diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /lib/csu/sparc64 | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'lib/csu/sparc64')
-rw-r--r-- | lib/csu/sparc64/crt0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/sparc64/crt0.c b/lib/csu/sparc64/crt0.c index bc0b88d99fa..5c776bc708f 100644 --- a/lib/csu/sparc64/crt0.c +++ b/lib/csu/sparc64/crt0.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crt0.c,v 1.3 2002/02/16 21:27:20 millert Exp $ */ +/* $OpenBSD: crt0.c,v 1.4 2002/02/17 19:42:22 millert Exp $ */ /* * Copyright (c) 1995 Christopher G. Demetriou @@ -59,7 +59,7 @@ __start: "); -void ___start __P((char **, void (*)(void), const void *)); +void ___start(char **, void (*)(void), const void *); void ___start(char **sp, void (*cleanup)(void), const void *obj) |