From 4a6648f44eefbfbea38a1de56f8a8e44a8892941 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Mon, 17 Jan 2011 20:26:30 +0000 Subject: Replace 'extern inline' with 'static inline' Acked-by: Edgar E. Iglesias Signed-off-by: Blue Swirl --- tests/hello-i386.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/hello-i386.c') diff --git a/tests/hello-i386.c b/tests/hello-i386.c index e00245d3fe..86afc34fb1 100644 --- a/tests/hello-i386.c +++ b/tests/hello-i386.c @@ -1,6 +1,6 @@ #include -extern inline volatile void exit(int status) +static inline volatile void exit(int status) { int __res; __asm__ volatile ("movl %%ecx,%%ebx\n"\ @@ -8,7 +8,7 @@ extern inline volatile void exit(int status) : "=a" (__res) : "0" (__NR_exit),"c" ((long)(status))); } -extern inline int write(int fd, const char * buf, int len) +static inline int write(int fd, const char * buf, int len) { int status; __asm__ volatile ("pushl %%ebx\n"\ -- cgit 1.4.1