dect
/
libdect
Archived
13
0
Fork 0

src: rename file.c to io.c

Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
Patrick McHardy 2010-07-08 22:31:51 +02:00
parent 1f98e1ee7d
commit d4879f6908
3 changed files with 6 additions and 6 deletions

View File

@ -1,11 +1,11 @@
/*
* libdect file descriptor handling
* libdect IO handling
*
* Copyright (c) 2009-2010 Patrick McHardy <kaber@trash.net>
*/
#ifndef _LIBDECT_FILE_H
#define _LIBDECT_FILE_H
#ifndef _LIBDECT_IO_H
#define _LIBDECT_IO_H
#include <sys/socket.h>
@ -42,4 +42,4 @@ extern int dect_register_fd(const struct dect_handle *dh, struct dect_fd *dfd,
uint32_t events);
extern void dect_unregister_fd(const struct dect_handle *dh, struct dect_fd *dfd);
#endif /* _LIBDECT_FILE_H */
#endif /* _LIBDECT_IO_H */

View File

@ -15,7 +15,7 @@ dect-obj += keypad.o
dect-obj += auth.o
dect-obj += dsaa.o
dect-obj += netlink.o
dect-obj += file.o
dect-obj += io.o
dect-obj += timer.o
dect-obj += utils.o
dect-obj += raw.o

View File

@ -1,5 +1,5 @@
/*
* libdect file handling functions
* libdect IO functions
*
* Copyright (c) 2009-2010 Patrick McHardy <kaber@trash.net>
*