diff options
author | 2005-10-10 12:00:52 +0000 | |
---|---|---|
committer | 2005-10-10 12:00:52 +0000 | |
commit | ffd953dfae82e3b0e8b905f4243cb45b9174eedc (patch) | |
tree | caa92540694c4802052e87653260b3ca7e27cfad /lib/libc/stdio/sprintf.c | |
parent | less verbose listing of libraries (diff) | |
download | wireguard-openbsd-ffd953dfae82e3b0e8b905f4243cb45b9174eedc.tar.xz wireguard-openbsd-ffd953dfae82e3b0e8b905f4243cb45b9174eedc.zip |
Remove a few warnings. Those were not apparent thanks to a bug in gcc 2.95.
Patch by Leonardo Chiquitto Filho <leonardo@iken.com.br>
Thanks.
Diffstat (limited to 'lib/libc/stdio/sprintf.c')
-rw-r--r-- | lib/libc/stdio/sprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/sprintf.c b/lib/libc/stdio/sprintf.c index a31246c91db..67f924b27e8 100644 --- a/lib/libc/stdio/sprintf.c +++ b/lib/libc/stdio/sprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sprintf.c,v 1.12 2005/08/08 08:05:36 espie Exp $ */ +/* $OpenBSD: sprintf.c,v 1.13 2005/10/10 12:00:52 espie Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -32,6 +32,7 @@ */ #include <stdio.h> +#include <string.h> #include <stdarg.h> #include <limits.h> #include "local.h" |