chiark / gitweb /
[PATCH] update to libsysfs 1.2.0 and add some stuff klib_fixup
[elogind.git] / libsysfs / sysfs.h
index 49c9285bc37aa1c874ca4fa6833cc8a429608d87..1e58e8abb4a7c52930a87a8905cd875815523a80 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 isascii(int c);
+
 /* Debugging */
 #ifdef DEBUG
-#include "../logging.h" 
-#define dprintf(format, arg...)                                                                \
-       do {                                                                            \
-               log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg);        \
-       } while (0)
+#include "../logging.h"
+#define dprintf(format, arg...) dbg(format, ##arg)
 #else
 #define dprintf(format, arg...) do { } while (0)
 #endif