summaryrefslogtreecommitdiff
path: root/imap/src/osdep/unix/env_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap/src/osdep/unix/env_unix.c')
-rw-r--r--imap/src/osdep/unix/env_unix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/imap/src/osdep/unix/env_unix.c b/imap/src/osdep/unix/env_unix.c
index c41a5d04..c2fae370 100644
--- a/imap/src/osdep/unix/env_unix.c
+++ b/imap/src/osdep/unix/env_unix.c
@@ -967,7 +967,7 @@ char *myusername_full (unsigned long *flags)
* Returns: my local host name
*/
-char *mylocalhost ()
+char *mylocalhost (void)
{
if (!myLocalHost) {
char *s,tmp[MAILTMPLEN];
@@ -985,7 +985,7 @@ char *mylocalhost ()
* Returns: my home directory name
*/
-char *myhomedir ()
+char *myhomedir (void)
{
if (!myHomeDir) myusername ();/* initialize if first time */
return myHomeDir ? myHomeDir : "";
@@ -996,7 +996,7 @@ char *myhomedir ()
* Returns: my home directory name
*/
-static char *mymailboxdir ()
+static char *mymailboxdir (void)
{
char *home = myhomedir ();
/* initialize if first time */
@@ -1016,7 +1016,7 @@ static char *mymailboxdir ()
* Accepts: buffer string
*/
-char *sysinbox ()
+char *sysinbox (void)
{
char tmp[MAILTMPLEN];
if (!sysInbox) { /* initialize if first time */