diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-01 11:13:37 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-01 11:13:37 -0700 |
commit | b8625cfc6f629f146aa3944b5cfc65025884bd44 (patch) | |
tree | 167e6a27e1af51cff4c84a08cd709068419ca21d /misc/mkostemps.c | |
parent | 3f55550c148593f4a0db9eec939554bcf3f0bcd4 (diff) | |
download | glibc-b8625cfc6f629f146aa3944b5cfc65025884bd44.zip glibc-b8625cfc6f629f146aa3944b5cfc65025884bd44.tar.gz glibc-b8625cfc6f629f146aa3944b5cfc65025884bd44.tar.bz2 |
Clean up mkostemps64 definition for O_LARGEFILE==0.
Diffstat (limited to 'misc/mkostemps.c')
-rw-r--r-- | misc/mkostemps.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/misc/mkostemps.c b/misc/mkostemps.c index 64dd477..aca487d 100644 --- a/misc/mkostemps.c +++ b/misc/mkostemps.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009 Free Software Foundation, Inc. +/* Copyright (C) 2009-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 @@ -41,3 +41,7 @@ mkostemps (template, suffixlen, flags) return __gen_tempname (template, suffixlen, flags, __GT_FILE); } + +#if !defined O_LARGEFILE || O_LARGEFILE == 0 +weak_alias (mkostemps, mkostemps64) +#endif |