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

dtspcd: fix implicit-function-declaration warnings

This commit is contained in:
Jon Trulson 2021-11-16 11:45:11 -07:00
parent 36c9476a74
commit 4b3901f63b

View file

@ -41,7 +41,11 @@
#include <pwd.h>
#include <errno.h>
#include <signal.h>
#include <unistd.h> /* initgroups() */
#include <sys/types.h>
#include <grp.h>
#include <string.h>
#include <libgen.h> /* basename() */
#include <sys/param.h> /* MAXPATHLEN */