summaryrefslogtreecommitdiff
path: root/misc/mkostemps64.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2012-08-01 11:13:37 -0700
committerRoland McGrath <roland@hack.frob.com>2012-08-01 11:13:37 -0700
commitb8625cfc6f629f146aa3944b5cfc65025884bd44 (patch)
tree167e6a27e1af51cff4c84a08cd709068419ca21d /misc/mkostemps64.c
parent3f55550c148593f4a0db9eec939554bcf3f0bcd4 (diff)
Clean up mkostemps64 definition for O_LARGEFILE==0.
Diffstat (limited to 'misc/mkostemps64.c')
-rw-r--r--misc/mkostemps64.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/mkostemps64.c b/misc/mkostemps64.c
index 17cbdaf1ad..88d1460f34 100644
--- a/misc/mkostemps64.c
+++ b/misc/mkostemps64.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2000-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -20,6 +20,9 @@
#include <stdio.h>
#include <stdlib.h>
+/* If O_LARGEFILE is zero, mkostemps.c defines mkostemps64 as an alias. */
+#if defined O_LARGEFILE && O_LARGEFILE != 0
+
/* Generate a unique temporary file name from TEMPLATE. The last six
characters before a suffix of length SUFFIXLEN of TEMPLATE must be
"XXXXXX"; they are replaced with a string that makes the filename
@@ -38,3 +41,5 @@ mkostemps64 (template, suffixlen, flags)
return __gen_tempname (template, suffixlen, flags | O_LARGEFILE, __GT_FILE);
}
+
+#endif