aboutsummaryrefslogtreecommitdiff
path: root/dlib/dlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'dlib/dlib.c')
-rw-r--r--dlib/dlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dlib/dlib.c b/dlib/dlib.c
index cd8e8a72..f4c8db2d 100644
--- a/dlib/dlib.c
+++ b/dlib/dlib.c
@@ -883,7 +883,7 @@ void dLib_show_messages(bool_t show)
/**
* Return the current working directory in a new string
*/
-char *dGetcwd ()
+char *dGetcwd (void)
{
size_t size = 128;
@@ -901,7 +901,7 @@ char *dGetcwd ()
/**
* Return the home directory in a static string (don't free)
*/
-char *dGethomedir ()
+char *dGethomedir (void)
{
static char *homedir = NULL;