Upgrade Texinfo from 4.8 to 4.13 on the vendor branch
[dragonfly.git] / contrib / texinfo / gnulib / lib / mkstemp.c
1 /* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007 Free Software Foundation, Inc.
2    This file is derived from the one in the GNU C Library.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 #if !_LIBC
18 # include <config.h>
19 #endif
20
21 #include <stdlib.h>
22
23 #if !_LIBC
24 # include "tempname.h"
25 # define __gen_tempname gen_tempname
26 # define __GT_FILE GT_FILE
27 #endif
28
29 #include <stdio.h>
30
31 #ifndef __GT_FILE
32 # define __GT_FILE 0
33 #endif
34
35 /* Generate a unique temporary file name from TEMPLATE.
36    The last six characters of TEMPLATE must be "XXXXXX";
37    they are replaced with a string that makes the file name unique.
38    Then open the file and return a fd. */
39 int
40 mkstemp (template)
41      char *template;
42 {
43   return __gen_tempname (template, __GT_FILE);
44 }