diff options
author | joerg <joerg@pkgsrc.org> | 2008-04-04 15:17:51 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-04-04 15:17:51 +0000 |
commit | 84ec6e2e1c2cfd6a7e0d99e07d702d255e05079b (patch) | |
tree | e0af7c9bfe25a4a528e8c344e4b5083bd430e66a /net/libfetch | |
parent | 4c6f78867daee844db6c41eb1c9bd03624f2a774 (diff) | |
download | pkgsrc-84ec6e2e1c2cfd6a7e0d99e07d702d255e05079b.tar.gz |
Use inttypes.h, it is more portable and all that is needed here.
Diffstat (limited to 'net/libfetch')
-rw-r--r-- | net/libfetch/files/ftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/libfetch/files/ftp.c b/net/libfetch/files/ftp.c index f6e6f1b4672..95448b73845 100644 --- a/net/libfetch/files/ftp.c +++ b/net/libfetch/files/ftp.c @@ -1,4 +1,4 @@ -/* $NetBSD: ftp.c,v 1.10 2008/04/02 15:33:14 joerg Exp $ */ +/* $NetBSD: ftp.c,v 1.11 2008/04/04 15:17:51 joerg Exp $ */ /*- * Copyright (c) 1998-2004 Dag-Erling Coïdan Smørgrav * All rights reserved. @@ -63,9 +63,9 @@ #include <ctype.h> #include <errno.h> #include <fcntl.h> +#include <inttypes.h> #include <netdb.h> #include <stdarg.h> -#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |