From d98ebf62cd342398008d256d034d820d4aee5e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Wed, 14 May 2014 16:53:46 +0200 Subject: [PATCH] native: fixup #1145: function declaration --- cpu/native/syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/syscalls.c b/cpu/native/syscalls.c index a8aa68d66a..219826f43a 100644 --- a/cpu/native/syscalls.c +++ b/cpu/native/syscalls.c @@ -314,7 +314,7 @@ void errx(int eval, const char *fmt, ...) verrx(eval, fmt, argp); } -int getpid() +int getpid(void) { warnx("not implemented"); return -1;