]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 1996-2025 The Squid Software Foundation and contributors | |
3 | * | |
4 | * Squid software is distributed under GPLv2+ license and includes | |
5 | * contributions from numerous individuals and organizations. | |
6 | * Please see the COPYING and CONTRIBUTORS files for details. | |
7 | */ | |
8 | ||
9 | /* | |
10 | * Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc. | |
11 | * This file is part of the GNU C Library. | |
12 | * The GNU C Library is free software; you can redistribute it and/or | |
13 | * modify it under the terms of the GNU Library General Public License as | |
14 | * published by the Free Software Foundation; either version 2 of the | |
15 | * License, or (at your option) any later version. | |
16 | * | |
17 | * The GNU C Library is distributed in the hope that it will be useful, | |
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
20 | * Library General Public License for more details. | |
21 | * | |
22 | * You should have received a copy of the GNU Library General Public | |
23 | * License along with the GNU C Library; see the file COPYING.LIB. If | |
24 | * not, write to the Free Software Foundation, Inc., 675 Mass Ave, | |
25 | * Cambridge, MA 02139, USA. | |
26 | */ | |
27 | ||
28 | #ifndef SQUID_COMPAT_TEMPNAM_H | |
29 | #define SQUID_COMPAT_TEMPNAM_H | |
30 | ||
31 | extern char *tempnam(const char *, const char *); | |
32 | ||
33 | #endif /* SQUID_COMPAT_TEMPNAM_H */ | |
34 |