xref: /netbsd-src/external/gpl2/xcvs/dist/lib/mkstemp.c (revision 5a6c14c844c4c665da5632061aebde7bb2cb5766)
1a7c91847Schristos /* Copyright (C) 1998, 1999, 2001, 2005 Free Software Foundation, Inc.
2a7c91847Schristos    This file is derived from the one in the GNU C Library.
3a7c91847Schristos 
4a7c91847Schristos    This program is free software; you can redistribute it and/or modify
5a7c91847Schristos    it under the terms of the GNU General Public License as published by
6a7c91847Schristos    the Free Software Foundation; either version 2, or (at your option)
7a7c91847Schristos    any later version.
8a7c91847Schristos 
9a7c91847Schristos    This program is distributed in the hope that it will be useful,
10a7c91847Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
11a7c91847Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12a7c91847Schristos    GNU General Public License for more details.
13a7c91847Schristos 
14a7c91847Schristos    You should have received a copy of the GNU General Public License along
15a7c91847Schristos    with this program; if not, write to the Free Software Foundation,
16a7c91847Schristos    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17*5a6c14c8Schristos #include <sys/cdefs.h>
18*5a6c14c8Schristos __RCSID("$NetBSD: mkstemp.c,v 1.2 2016/05/17 14:00:09 christos Exp $");
19*5a6c14c8Schristos 
20a7c91847Schristos 
21a7c91847Schristos #ifdef HAVE_CONFIG_H
22a7c91847Schristos # include <config.h>
23a7c91847Schristos #endif
24a7c91847Schristos 
25a7c91847Schristos /* Disable the definition of mkstemp to rpl_mkstemp (from config.h) in this
26a7c91847Schristos    file.  Otherwise, we'd get conflicting prototypes for rpl_mkstemp on
27a7c91847Schristos    most systems.  */
28a7c91847Schristos #undef mkstemp
29a7c91847Schristos 
30a7c91847Schristos #include <stdio.h>
31a7c91847Schristos #include <stdlib.h>
32a7c91847Schristos 
33a7c91847Schristos #ifndef __GT_FILE
34a7c91847Schristos # define __GT_FILE 0
35a7c91847Schristos #endif
36a7c91847Schristos 
37a7c91847Schristos int __gen_tempname ();
38a7c91847Schristos 
39a7c91847Schristos /* Generate a unique temporary file name from TEMPLATE.
40a7c91847Schristos    The last six characters of TEMPLATE must be "XXXXXX";
41a7c91847Schristos    they are replaced with a string that makes the file name unique.
42a7c91847Schristos    Then open the file and return a fd. */
43a7c91847Schristos int
rpl_mkstemp(char * template)44a7c91847Schristos rpl_mkstemp (char *template)
45a7c91847Schristos {
46a7c91847Schristos   return __gen_tempname (template, __GT_FILE);
47a7c91847Schristos }
48