blob: 8da6ab31152ad47918fa75bfa73437859e01eebe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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
15extern size_t strlen(const char *);
16extern void *memcpy(void *, const void *, size_t);
17extern void *memmove(void *, const void *, size_t);
18extern void *memset(void *, int, size_t);
19extern int printf(const char *, ...);
20
21EXPORT_SYMBOL(strlen);
22EXPORT_SYMBOL(memcpy);
23EXPORT_SYMBOL(memmove);
24EXPORT_SYMBOL(memset);
25EXPORT_SYMBOL(printf);
26
27EXPORT_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
Paolo 'Blaisorblade' Giarrusso74433c02005-12-29 17:39:59 +010037extern void readdir64(void) __attribute__((weak));
38EXPORT_SYMBOL(readdir64);
39extern void truncate64(void) __attribute__((weak));
40EXPORT_SYMBOL(truncate64);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef SUBARCH_i386
43EXPORT_SYMBOL(vsyscall_ehdr);
44EXPORT_SYMBOL(vsyscall_end);
45#endif
46
47EXPORT_SYMBOL_PROTO(__errno_location);
48
49EXPORT_SYMBOL_PROTO(access);
50EXPORT_SYMBOL_PROTO(open);
51EXPORT_SYMBOL_PROTO(open64);
52EXPORT_SYMBOL_PROTO(close);
53EXPORT_SYMBOL_PROTO(read);
54EXPORT_SYMBOL_PROTO(write);
55EXPORT_SYMBOL_PROTO(dup2);
56EXPORT_SYMBOL_PROTO(__xstat);
57EXPORT_SYMBOL_PROTO(__lxstat);
58EXPORT_SYMBOL_PROTO(__lxstat64);
59EXPORT_SYMBOL_PROTO(lseek);
60EXPORT_SYMBOL_PROTO(lseek64);
61EXPORT_SYMBOL_PROTO(chown);
62EXPORT_SYMBOL_PROTO(truncate);
63EXPORT_SYMBOL_PROTO(utime);
64EXPORT_SYMBOL_PROTO(chmod);
65EXPORT_SYMBOL_PROTO(rename);
66EXPORT_SYMBOL_PROTO(__xmknod);
67
68EXPORT_SYMBOL_PROTO(symlink);
69EXPORT_SYMBOL_PROTO(link);
70EXPORT_SYMBOL_PROTO(unlink);
71EXPORT_SYMBOL_PROTO(readlink);
72
73EXPORT_SYMBOL_PROTO(mkdir);
74EXPORT_SYMBOL_PROTO(rmdir);
75EXPORT_SYMBOL_PROTO(opendir);
76EXPORT_SYMBOL_PROTO(readdir);
77EXPORT_SYMBOL_PROTO(closedir);
78EXPORT_SYMBOL_PROTO(seekdir);
79EXPORT_SYMBOL_PROTO(telldir);
80
81EXPORT_SYMBOL_PROTO(ioctl);
82
83EXPORT_SYMBOL_PROTO(pread64);
84EXPORT_SYMBOL_PROTO(pwrite64);
85
86EXPORT_SYMBOL_PROTO(statfs);
87EXPORT_SYMBOL_PROTO(statfs64);
88
89EXPORT_SYMBOL_PROTO(getuid);
90
Paolo 'Blaisorblade' Giarrussoa2d76bd2005-07-28 21:16:15 -070091EXPORT_SYMBOL_PROTO(fsync);
92EXPORT_SYMBOL_PROTO(fdatasync);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * Overrides for Emacs so that we follow Linus's tabbing style.
96 * Emacs will notice this stuff at the end of the file and automatically
97 * adjust the settings for this buffer only. This must remain at the end
98 * of the file.
99 * ---------------------------------------------------------------------------
100 * Local variables:
101 * c-file-style: "linux"
102 * End:
103 */