diff options
author | 2008-06-25 02:45:23 +0000 | |
---|---|---|
committer | 2008-06-25 02:45:23 +0000 | |
commit | 62f7d37e4c225f0f86109de010a0bcd906ee1bd2 (patch) | |
tree | a938b08eea586b9ff9077eb282afee2f719cfb5e | |
parent | implement automatic time-based rekeying (every 10 minutes); ok deraadt@ (diff) | |
download | wireguard-openbsd-62f7d37e4c225f0f86109de010a0bcd906ee1bd2.tar.xz wireguard-openbsd-62f7d37e4c225f0f86109de010a0bcd906ee1bd2.zip |
Make pic compatiable. From and okay drahn@ no objection miod@
"Slackers!" deraadt@
-rw-r--r-- | lib/csu/sparc64/crt0.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/csu/sparc64/crt0.c b/lib/csu/sparc64/crt0.c index ac0716f04f8..ee667dc8835 100644 --- a/lib/csu/sparc64/crt0.c +++ b/lib/csu/sparc64/crt0.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crt0.c,v 1.6 2004/01/04 03:40:19 pvalchev Exp $ */ +/* $OpenBSD: crt0.c,v 1.7 2008/06/25 02:45:23 kurt Exp $ */ /* * Copyright (c) 1995 Christopher G. Demetriou @@ -58,10 +58,9 @@ __asm__(".text\n" " ba,pt %icc, ___start\n" " nop"); +static void ___start(char **, void (*)(void), const void *); -void ___start(char **, void (*)(void), const void *); - -void +static void ___start(char **sp, void (*cleanup)(void), const void *obj) { long argc; |