chiark / gitweb /
[PATCH] fix permissions to work properly now.
[elogind.git] / libsysfs / sysfs.h
index eb2a00295821b9c70c3902c521f7aebdedeecded..3186c37a16fb612f811348bd833ace981882a615 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Internal Header Definitions for libsysfs
  *
- * Copyright (C) 2003 International Business Machines, Inc.
+ * Copyright (C) IBM Corp. 2003
  *
  *  This library is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU Lesser General Public
@@ -27,7 +27,6 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <string.h>
-#include <mntent.h>
 #include <dirent.h>
 #include <sys/stat.h>
 #include <fcntl.h>
@@ -41,9 +40,17 @@ extern int isascii(int c);
 
 /* Debugging */
 #ifdef DEBUG
-#define dprintf(format, arg...) fprintf(stderr, format, ## arg)
+#include <syslog.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
 
+extern int log_message (int level, const char *format, ...)
+       __attribute__ ((format (printf, 2, 3)));
+
+
 #endif /* _SYSFS_H_ */