diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-07-28 16:35:51 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:50:43 +0200 |
commit | 4d51150ca0aae979718ac10030df85421b763cd1 (patch) | |
tree | a824a83feefca6695fbe1072b3d724290b07af1f /dlib/dlib.c | |
parent | a9950b3aca2a264e0ee1da1e2a29d3be11e6606c (diff) |
Make Dillo C99 standard compliant
Reviewed-by: dogma
Diffstat (limited to 'dlib/dlib.c')
-rw-r--r-- | dlib/dlib.c | 4 |
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; |