]> git.cworth.org Git - tar/blob - gnu/mkdtemp.c
upstream: Fix extraction of device nodes.
[tar] / gnu / mkdtemp.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Copyright (C) 1999, 2001-2003, 2006-2007, 2009-2010 Free Software
4    Foundation, Inc.
5    This file is part of the GNU C Library.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* Extracted from misc/mkdtemp.c.  */
21
22 #include <config.h>
23
24 /* Specification.  */
25 #include <stdlib.h>
26
27 #include "tempname.h"
28
29 /* Generate a unique temporary directory from XTEMPLATE.
30    The last six characters of XTEMPLATE must be "XXXXXX";
31    they are replaced with a string that makes the filename unique.
32    The directory is created, mode 700, and its name is returned.
33    (This function comes from OpenBSD.) */
34 char *
35 mkdtemp (char *xtemplate)
36 {
37   if (gen_tempname (xtemplate, 0, 0, GT_DIR))
38     return NULL;
39   else
40     return xtemplate;
41 }