summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/fsusage.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/fsusage.h b/lib/fsusage.h
index c3779c19e..a4bcdbf59 100644
--- a/lib/fsusage.h
+++ b/lib/fsusage.h
@@ -25,8 +25,13 @@ struct fs_usage
long fsu_ffree; /* Free file nodes. */
};
-#if __STDC__
-int get_fs_usage (char *path, char *disk, struct fs_usage *fsp);
+#ifndef __P
+#if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
+#define __P(args) args
#else
-int get_fs_usage ();
-#endif
+#define __P(args) ()
+#endif /* GCC. */
+#endif /* Not __P. */
+
+int get_fs_usage __P ((const char *path, const char *disk,
+ struct fs_usage *fsp));