Skip to content
Snippets Groups Projects
Commit 4145fce6 authored by Sebastien Ponce's avatar Sebastien Ponce Committed by Steven Murray
Browse files

Cleanup of many useless ifdefs.

In particular, dropped all code related to unsupported platforms.
Note that it has been verified that this commit is a noop for the compiled code as the preprocessed code is unchanged (modulo some line numbers).
parent 62401b84
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
#define PATH_CONFIG "/etc/castor/castor.conf"
#endif /* PATH_CONFIG */
#if ((defined(_REENTRANT) || defined(_THREAD_SAFE)) && !defined(_WIN32))
#if (defined(_REENTRANT) || defined(_THREAD_SAFE))
#define strtok(X,Y) strtok_r(X,Y,&last)
#endif /* _REENTRANT || _THREAD_SAFE */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment