diff options
Diffstat (limited to 'lib/libc/stdio/rewind.c')
-rw-r--r-- | lib/libc/stdio/rewind.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/rewind.c b/lib/libc/stdio/rewind.c index 28119b6a884..4a52ed064a5 100644 --- a/lib/libc/stdio/rewind.c +++ b/lib/libc/stdio/rewind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rewind.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ +/* $OpenBSD: rewind.c,v 1.6 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -41,3 +41,4 @@ rewind(FILE *fp) clearerr(fp); errno = 0; /* not required, but seems reasonable */ } +DEF_STRONG(rewind); |