1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

lib/DtWidgets: fix implicit-function-declaration warnings

This commit is contained in:
Jon Trulson 2021-11-12 15:05:56 -07:00
parent 36ff45cc17
commit fd3be337fa

View file

@ -50,6 +50,10 @@
** Include Files
*/
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include <ctype.h>
#include <stdlib.h>
@ -62,13 +66,10 @@
# include <wchar.h>
# endif
# include <libintl.h>
#elif defined(__linux__)
# include <wctype.h>
# define NO_putwc
#elif defined(CSRG_BASED)
#elif defined(__linux__) || defined(CSRG_BASED)
# include <wctype.h>
# include <wchar.h>
#endif /* linux */
#endif /* linux || CSRG_BASED */
#include <sys/wait.h>
#include "signal.h"