90ee472c8db701fe8e7325d92b4b1b6d7f36629b
1 /*****************************************************************************
2 * RRDtool 1.2rc2 Copyright by Tobi Oetiker, 1997-2005
3 * This file: Copyright 2003 Peter Stamfest <peter@stamfest.at>
4 * & Tobias Oetiker
5 * Distributed under the GPL
6 *****************************************************************************
7 * rrd_is_thread_safe.c Poisons some nasty function calls using GNU cpp
8 *****************************************************************************
9 * $Id$
10 *************************************************************************** */
12 #ifndef _RRD_IS_THREAD_SAFE_H
13 #define _RRD_IS_THREAD_SAFE_H
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 #undef strerror
20 #pragma GCC poison strtok asctime ctime gmtime localtime tmpnam strerror
22 #ifdef __cplusplus
23 }
24 #endif
26 #endif /*_RRD_IS_THREAD_SAFE_H */