OSDN Git Service

Get rid of missing prototype warnings
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / hppa / __syscall_error.c
index 7d24ed2..5e109a8 100644 (file)
@@ -10,7 +10,8 @@
 
 /* This routine is jumped to by all the syscall handlers, to stash
  * an error number into errno.  */
-int attribute_hidden __syscall_error(int err_no)
+int __syscall_error(int err_no) attribute_hidden;
+int __syscall_error(int err_no)
 {
        __set_errno(err_no);
        return -1;