vserver 1.9.3
[linux-2.6.git] / arch / um / os-Linux / user_syms.c
1 #include "linux/types.h"
2 #include "linux/module.h"
3
4 /* Some of this are builtin function (some are not but could in the future),
5  * so I *must* declare good prototypes for them and then EXPORT them.
6  * The kernel code uses the macro defined by include/linux/string.h,
7  * so I undef macros; the userspace code does not include that and I
8  * add an EXPORT for the glibc one.*/
9
10 #undef strlen
11 #undef strstr
12 #undef memcpy
13 #undef memset
14
15 extern size_t strlen(const char *);
16 extern void *memcpy(void *, const void *, size_t);
17 extern void *memmove(void *, const void *, size_t);
18 extern void *memset(void *, int, size_t);
19 extern int printf(const char *, ...);
20
21 EXPORT_SYMBOL(strlen);
22 EXPORT_SYMBOL(memcpy);
23 EXPORT_SYMBOL(memmove);
24 EXPORT_SYMBOL(memset);
25 EXPORT_SYMBOL(printf);
26
27 EXPORT_SYMBOL(strstr);
28
29 /* Here, instead, I can provide a fake prototype. Yes, someone cares: genksyms.
30  * However, the modules will use the CRC defined *here*, no matter if it is
31  * good; so the versions of these symbols will always match
32  */
33 #define EXPORT_SYMBOL_PROTO(sym)       \
34        int sym(void);                  \
35        EXPORT_SYMBOL(sym);
36
37 EXPORT_SYMBOL_PROTO(__errno_location);
38
39 EXPORT_SYMBOL_PROTO(access);
40 EXPORT_SYMBOL_PROTO(open);
41 EXPORT_SYMBOL_PROTO(open64);
42 EXPORT_SYMBOL_PROTO(close);
43 EXPORT_SYMBOL_PROTO(read);
44 EXPORT_SYMBOL_PROTO(write);
45 EXPORT_SYMBOL_PROTO(dup2);
46 EXPORT_SYMBOL_PROTO(__xstat);
47 EXPORT_SYMBOL_PROTO(__lxstat);
48 EXPORT_SYMBOL_PROTO(__lxstat64);
49 EXPORT_SYMBOL_PROTO(lseek);
50 EXPORT_SYMBOL_PROTO(lseek64);
51 EXPORT_SYMBOL_PROTO(chown);
52 EXPORT_SYMBOL_PROTO(truncate);
53 EXPORT_SYMBOL_PROTO(utime);
54 EXPORT_SYMBOL_PROTO(chmod);
55 EXPORT_SYMBOL_PROTO(rename);
56 EXPORT_SYMBOL_PROTO(__xmknod);
57
58 EXPORT_SYMBOL_PROTO(symlink);
59 EXPORT_SYMBOL_PROTO(link);
60 EXPORT_SYMBOL_PROTO(unlink);
61 EXPORT_SYMBOL_PROTO(readlink);
62
63 EXPORT_SYMBOL_PROTO(mkdir);
64 EXPORT_SYMBOL_PROTO(rmdir);
65 EXPORT_SYMBOL_PROTO(opendir);
66 EXPORT_SYMBOL_PROTO(readdir);
67 EXPORT_SYMBOL_PROTO(closedir);
68 EXPORT_SYMBOL_PROTO(seekdir);
69 EXPORT_SYMBOL_PROTO(telldir);
70
71 EXPORT_SYMBOL_PROTO(ioctl);
72
73 EXPORT_SYMBOL_PROTO(pread64);
74 EXPORT_SYMBOL_PROTO(pwrite64);
75
76 EXPORT_SYMBOL_PROTO(statfs);
77 EXPORT_SYMBOL_PROTO(statfs64);
78
79 EXPORT_SYMBOL_PROTO(getuid);
80
81 /*
82  * Overrides for Emacs so that we follow Linus's tabbing style.
83  * Emacs will notice this stuff at the end of the file and automatically
84  * adjust the settings for this buffer only.  This must remain at the end
85  * of the file.
86  * ---------------------------------------------------------------------------
87  * Local variables:
88  * c-file-style: "linux"
89  * End:
90  */