]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/tempname.c
Update.
[thirdparty/glibc.git] / sysdeps / generic / tempname.c
CommitLineData
2e65ca2b 1/* Copyright (C) 1991, 92, 93, 95-98, 99 Free Software Foundation, Inc.
6d52618b 2 This file is part of the GNU C Library.
28f540f4 3
6d52618b
UD
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
28f540f4 8
6d52618b
UD
9 The GNU C Library 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 GNU
12 Library General Public License for more details.
28f540f4 13
6d52618b
UD
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
28f540f4 18
7cabd57c
UD
19#define __need_size_t
20#include <stddef.h>
28f540f4 21#include <stdio.h>
7cabd57c 22#include <errno.h>
28f540f4 23
7cabd57c
UD
24/* Perform the "SVID path search malarkey" on DIR and PFX. Write a
25 template suitable for use in __gen_tempname into TMPL, bounded
26 by TMPL_LEN. */
27int
28__path_search (tmpl, tmpl_len, dir, pfx)
29 char *tmpl;
30 size_t tmpl_len;
c4029823
UD
31 const char *dir;
32 const char *pfx;
7cabd57c
UD
33{
34 __set_errno (ENOSYS);
35 return -1;
36}
37stub_warning (__path_search)
38
39/* Generate a (hopefully) unique temporary filename
40 in DIR (if applicable), using template TMPL.
2e65ca2b
UD
41 KIND determines what to do with that name. It may be one of:
42 __GT_FILE: create a file and return a read-write fd.
43 __GT_BIGFILE: same, but use open64() (or equivalent).
44 __GT_DIR: create a directory.
45 __GT_NOCREATE: just find a name not currently in use.
46 */
47
f81d98d6 48int
2e65ca2b 49__gen_tempname (tmpl, kind)
7cabd57c 50 char *tmpl;
2e65ca2b 51 int kind;
28f540f4 52{
c4029823 53 __set_errno (ENOSYS);
7cabd57c 54 return -1;
28f540f4
RM
55}
56
7cabd57c 57stub_warning (__gen_tempname)
f2ea0f5b 58#include <stub-tag.h>