chiark / gitweb /
[PATCH] cleanup callout fork
[elogind.git] / libsysfs / sysfs.h
index 00599954fd757332ce4ba8793429fe3b51e1fd11..1b800ddcd2311104697370c5d03093c8200b1b43 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
-#define dprintf(format, arg...) fprintf(stderr, format, ## arg)
+#include "../logging.h" 
+#define dprintf(format, arg...)                                                                \
+       do {                                                                            \
+               log_message (LOG_DEBUG , "%s: " format , __FUNCTION__ , ## arg);        \
+       } while (0)
 #else
 #define dprintf(format, arg...) do { } while (0)
 #endif