aboutsummaryrefslogtreecommitdiffstats
path: root/libc/syscommon.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commita27d2baa0c1a2ec70f47ea9199b1dd6762c8a349 (patch)
treedefd1cc07d16ad2f3b21154114e092d11c94c5bb /libc/syscommon.h
downloadandroid_bionic-a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349.tar.gz
android_bionic-a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349.tar.bz2
android_bionic-a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349.zip
Initial Contributionandroid-1.0
Diffstat (limited to 'libc/syscommon.h')
-rw-r--r--libc/syscommon.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/libc/syscommon.h b/libc/syscommon.h
new file mode 100644
index 000000000..429025279
--- /dev/null
+++ b/libc/syscommon.h
@@ -0,0 +1,32 @@
+/*
+ * syscommon.h
+ *
+ * Common header file for system call stubs
+ */
+
+#define __IN_SYS_COMMON
+#include <errno.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <sys/syscall.h>
+
+#include <poll.h>
+#include <sched.h>
+#include <sys/dirent.h>
+#include <sys/klog.h>
+#include <sys/mman.h>
+#include <sys/resource.h>
+#include <sys/select.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+#include <sys/times.h>
+#include <sys/uio.h>
+#include <sys/utime.h>
+#include <sys/utsname.h>
+#include <sys/vfs.h>
+#include <sys/wait.h>
+#include <unistd.h>
+
+#ifdef __i386__
+# include <sys/vm86.h>
+#endif