diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-01 11:09:48 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-01 11:09:48 -0700 |
commit | 3f55550c148593f4a0db9eec939554bcf3f0bcd4 (patch) | |
tree | c7e878c53c85055fd2855d0f91a8bd2bc72980a4 /misc/mkstemps64.c | |
parent | 48aec5b988f420a36ee4549865f9525584faa336 (diff) | |
download | glibc-3f55550c148593f4a0db9eec939554bcf3f0bcd4.tar.gz glibc-3f55550c148593f4a0db9eec939554bcf3f0bcd4.tar.xz glibc-3f55550c148593f4a0db9eec939554bcf3f0bcd4.zip |
Clean up mkstemps64 definition for O_LARGEFILE==0.
Diffstat (limited to 'misc/mkstemps64.c')
-rw-r--r-- | misc/mkstemps64.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/mkstemps64.c b/misc/mkstemps64.c index b4af7ca407..8393a516d1 100644 --- a/misc/mkstemps64.c +++ b/misc/mkstemps64.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, mkstemps.c defines mkstemps64 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 @@ -37,3 +40,5 @@ mkstemps64 (template, suffixlen) return __gen_tempname (template, suffixlen, O_LARGEFILE, __GT_FILE); } + +#endif |