diff options
author | 2006-01-13 21:33:28 +0000 | |
---|---|---|
committer | 2006-01-13 21:33:28 +0000 | |
commit | 6aa1814d9e5a99b01d3dc24902f81de95422ff8f (patch) | |
tree | bba469355db094ef515d8643ee05c513e60d15de /lib/libc/stdio/vfscanf.c | |
parent | send management frames at lowest possible rate. (diff) | |
download | wireguard-openbsd-6aa1814d9e5a99b01d3dc24902f81de95422ff8f.tar.xz wireguard-openbsd-6aa1814d9e5a99b01d3dc24902f81de95422ff8f.zip |
Pull in inttypes.h, not stdint.h so we get the prototypes for
strtoimax/strtoumax.
Diffstat (limited to 'lib/libc/stdio/vfscanf.c')
-rw-r--r-- | lib/libc/stdio/vfscanf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdio/vfscanf.c b/lib/libc/stdio/vfscanf.c index 543fd571334..68a0073b985 100644 --- a/lib/libc/stdio/vfscanf.c +++ b/lib/libc/stdio/vfscanf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfscanf.c,v 1.20 2006/01/13 17:56:18 millert Exp $ */ +/* $OpenBSD: vfscanf.c,v 1.21 2006/01/13 21:33:28 millert Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -31,12 +31,12 @@ * SUCH DAMAGE. */ +#include <ctype.h> +#include <inttypes.h> +#include <stdarg.h> #include <stddef.h> -#include <stdint.h> #include <stdio.h> #include <stdlib.h> -#include <ctype.h> -#include <stdarg.h> #include "local.h" #ifdef FLOATING_POINT |