summaryrefslogtreecommitdiff
path: root/lib/fopen.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-01-17 17:12:42 +0100
committerBruno Haible <bruno@clisp.org>2009-01-17 17:12:42 +0100
commitfc75b897899e64bed6a931c93b967e698da2d213 (patch)
tree991444a42a43f4b5bf2366ae41b1557a4b14a48d /lib/fopen.c
parent2ce0c024d8f5f537b8c1b2509c615af1ea430537 (diff)
downloadgnulib-fc75b897899e64bed6a931c93b967e698da2d213.tar.gz
Fix compilation error on HP-UX 11.00.
Diffstat (limited to 'lib/fopen.c')
-rw-r--r--lib/fopen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/fopen.c b/lib/fopen.c
index b20d3bcd5a..72610bd9b4 100644
--- a/lib/fopen.c
+++ b/lib/fopen.c
@@ -1,5 +1,5 @@
/* Open a stream to a file.
- Copyright (C) 2007-2008 Free Software Foundation, Inc.
+ Copyright (C) 2007-2009 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -36,6 +36,8 @@ orig_fopen (const char *filename, const char *mode)
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
+#include <sys/types.h>
+#include <sys/stat.h>
FILE *
rpl_fopen (const char *filename, const char *mode)