summaryrefslogtreecommitdiff
path: root/inotify-syscalls.h
diff options
context:
space:
mode:
Diffstat (limited to 'inotify-syscalls.h')
-rw-r--r--inotify-syscalls.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/inotify-syscalls.h b/inotify-syscalls.h
index a1d5408..7a1627e 100644
--- a/inotify-syscalls.h
+++ b/inotify-syscalls.h
@@ -4,14 +4,15 @@
*
* Licensed under the terms of the GNU General Public License Version 2.
*
- * Copyright (c) 2006 Tobias Klauser <tklauser@distanz.ch>
+ * Copyright (c) 2006-2007 Tobias Klauser <tklauser@distanz.ch>
*/
#ifndef _LINUX_INOTIFY_SYSCALLS_H
#define _LINUX_INOTIFY_SYSCALLS_H
#include <sys/syscall.h>
-
+/* glibc already defines them for some architectures */
+#ifndef __NR_inotify_init
#if defined(__i386__)
# define __NR_inotify_init 291
# define __NR_inotify_add_watch 292
@@ -79,6 +80,7 @@
#else
# error "inotify not supported on this architecture!"
#endif
+#endif /* __NR_inotify_init */
static inline int inotify_init (void)
{