chiark / gitweb /
[PATCH] udevd race conditions and performance, assorted cleanups
[elogind.git] / libsysfs / sysfs.h
index e39b7413cbb91d5759988e25111f2fd68cb1da4d..0fdb38af193b073dc8ac4dcd0b281dbf4935aeb3 100644 (file)
 #include <stdlib.h>
 #include <unistd.h>
 #include <string.h>
-#include <mntent.h>
 #include <dirent.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <errno.h>
-
-/* external library functions */
-extern int lstat(const char *file_name, struct stat *buf);
-extern int readlink(const char *path, char *buf, size_t bufsize);
-extern int getpagesize(void);
-extern int isascii(int c);
+#include "dlist.h"
 
 /* Debugging */
 #ifdef DEBUG
-#include <syslog.h>
+#include "../logging.h" 
 #define dprintf(format, arg...)                                                                \
-       do {                                                                            \
-               log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg);        \
-       } while (0)
+       dbg(format, ##arg)
 #else
 #define dprintf(format, arg...) do { } while (0)
 #endif
 
-extern int log_message (int level, const char *format, ...)
-       __attribute__ ((format (printf, 2, 3)));
-
-
 #endif /* _SYSFS_H_ */