Added cdecl.

committer: mfx <mfx> 1083812698 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2004-05-06 03:04:58 +00:00
parent 37ae689328
commit 23f5370dcf
4 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,7 @@ do_brk(void *addr)
}
static char *
__attribute__((cdecl))
do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset)
{
(void)len; (void)prot; (void)flags; (void)fd; (void)offset;

View File

@ -128,6 +128,7 @@ static uint32_t ascii5(char *p, uint32_t v, unsigned n)
static char *
__attribute__((cdecl))
do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset)
{
(void)len; (void)prot; (void)flags; (void)fd; (void)offset;

View File

@ -112,6 +112,7 @@ do_brk(void *addr)
}
static char *
__attribute__((cdecl))
do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset)
{
(void)len; (void)prot; (void)flags; (void)fd; (void)offset;

View File

@ -94,6 +94,7 @@ do_brk(void *addr)
}
static char *
__attribute__((cdecl))
do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset)
{
(void)len; (void)prot; (void)flags; (void)fd; (void)offset;