summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2008-04-04 15:17:51 +0000
committerjoerg <joerg@pkgsrc.org>2008-04-04 15:17:51 +0000
commitf8bafbe7e8aa495eea17e00751c749376086b4f2 (patch)
treee0af7c9bfe25a4a528e8c344e4b5083bd430e66a /net
parenta54dbf5cef93f44534fdea73fae62520f2171497 (diff)
downloadpkgsrc-f8bafbe7e8aa495eea17e00751c749376086b4f2.tar.gz
Use inttypes.h, it is more portable and all that is needed here.
Diffstat (limited to 'net')
-rw-r--r--net/libfetch/files/ftp.c4
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>