diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2019-01-09 16:42:39 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2019-01-09 16:42:39 +0000 |
commit | 669d64c0ed5ec23ee5b2af6a1f7289579b237e56 (patch) | |
tree | 9a80bf2cc432fd35fe497a4ff72da144774681f9 /lib/csu/crt0.c | |
parent | 81badc8ecdc79b7f9a86a0d42ff7c50b076667ff (diff) |
Use static consistently with definitions of functions that have been
declared static.
OK guenther@
Diffstat (limited to 'lib/csu/crt0.c')
-rw-r--r-- | lib/csu/crt0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/crt0.c b/lib/csu/crt0.c index 0ffccaf312c..7e380626797 100644 --- a/lib/csu/crt0.c +++ b/lib/csu/crt0.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crt0.c,v 1.11 2018/12/21 05:45:42 guenther Exp $ */ +/* $OpenBSD: crt0.c,v 1.12 2019/01/09 16:42:38 visa Exp $ */ /* * Copyright (c) 1995 Christopher G. Demetriou @@ -72,7 +72,7 @@ extern __dso_hidden initarray_f __preinit_array_start[], extern char __csu_do_fini_array __dso_hidden; -void +static void ___start(MD_START_ARGS) { size_t size, i; |