1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-13 11:42:21 +00:00

dtsession: fix implicit-function-declaration warnings

This commit is contained in:
Jon Trulson 2021-11-15 12:18:11 -07:00
parent 47348e59de
commit bbabcfd5f0
2 changed files with 4 additions and 0 deletions

View file

@ -53,6 +53,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <dirent.h> #include <dirent.h>
#include <time.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/param.h> #include <sys/param.h>

View file

@ -55,6 +55,9 @@
** **
***************************************************************************** *****************************************************************************
*************************************<+>*************************************/ *************************************<+>*************************************/
#ifndef _XOPEN_SOURCE
# define _XOPEN_SOURCE 600
#endif
#include <signal.h> #include <signal.h>
#include <stdio.h> #include <stdio.h>