summaryrefslogtreecommitdiffstats
path: root/Compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'Compat.h')
-rw-r--r--Compat.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Compat.h b/Compat.h
new file mode 100644
index 00000000..c9fd0e62
--- /dev/null
+++ b/Compat.h
@@ -0,0 +1,19 @@
+#ifndef HEADER_Compat
+#define HEADER_Compat
+/*
+htop - Compat.h
+(C) 2020 Christian Göttsche
+Released under the GNU GPLv2, see the COPYING file
+in the source distribution for its full text.
+*/
+
+#include <sys/stat.h>
+
+
+int Compat_fstatat(int dirfd,
+ const char* dirpath,
+ const char* pathname,
+ struct stat* statbuf,
+ int flags);
+
+#endif /* HEADER_Compat */