aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Anvin <hpa@tazenda.sc.orionmulti.com>2005-09-06 13:42:29 -0700
committerPeter Anvin <hpa@tazenda.sc.orionmulti.com>2005-09-06 13:42:29 -0700
commit31b0a822aeff0f3b0f908268711e985568ebb221 (patch)
tree1a8240a2ff535c824017f7e75030580fedb8bf69
parentf5260f8737517f19a03ee906cd64dfc9930221cd (diff)
downloadklibc-31b0a822aeff0f3b0f908268711e985568ebb221.tar.gz
Add actual prototypes to <sys/inotify.h>klibc-1.1.1
-rw-r--r--include/sys/inotify.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sys/inotify.h b/include/sys/inotify.h
index 2bde1be61bc7f..74fc714190f03 100644
--- a/include/sys/inotify.h
+++ b/include/sys/inotify.h
@@ -5,6 +5,12 @@
#ifndef _SYS_INOTIFY_H
#define _SYS_INOTIFY_H
+#include <sys/types.h>
#include <linux/inotify.h>
+#include <klibc/extern.h>
+
+__extern int inotify_init(void);
+__extern int inotify_add_watch(int, const char *, __u32);
+__extern int inotify_rm_watch(int, __u32);
#endif /* _SYS_INOTIFY_H */