1 /*
2  * Copyright (C) 1996-2021 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 #ifndef SQUID_OS_SGI_H
10 #define SQUID_OS_SGI_H
11 
12 #if _SQUID_SGI_
13 
14 /****************************************************************************
15  *--------------------------------------------------------------------------*
16  * DO *NOT* MAKE ANY CHANGES below here unless you know what you're doing...*
17  *--------------------------------------------------------------------------*
18  ****************************************************************************/
19 
20 #if !defined(_SVR4_SOURCE)
21 #define _SVR4_SOURCE        /* for tempnam(3) */
22 #endif
23 
24 #if USE_ASYNC_IO
25 #define _ABI_SOURCE
26 #endif /* USE_ASYNC_IO */
27 
28 #endif /* _SQUID_SGI_ */
29 #endif /* SQUID_OS_SGI_H */
30 
31