/***************************************************************************** * RRDtool 1.2.23 Copyright by Tobi Oetiker, 1997-2007 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL ***************************************************************************** * rrd_is_thread_safe.c Poisons some nasty function calls using GNU cpp ***************************************************************************** * $Id: rrd_is_thread_safe.h 1050 2007-05-02 18:06:05Z oetiker $ *************************************************************************** */ #ifndef _RRD_IS_THREAD_SAFE_H #define _RRD_IS_THREAD_SAFE_H #ifdef __cplusplus extern "C" { #endif #undef strerror #if( 2 < __GNUC__ ) #pragma GCC poison strtok asctime ctime gmtime localtime tmpnam strerror #endif #ifdef __cplusplus } #endif #endif /*_RRD_IS_THREAD_SAFE_H */