diff options
author | Matthew Chapman <matty@samba.org> | 1999-08-08 04:44:36 +0000 |
---|---|---|
committer | Matthew Chapman <matty@samba.org> | 1999-08-08 04:44:36 +0000 |
commit | fcf0300ffeb7028ea5d4e1d3b6f575e43f4eb110 (patch) | |
tree | b45c56988b34a56ac7fe51811cf59e8d92826e98 | |
parent | 93a1aa7ccbdb72ec6a6769857f7a2bd815939fa0 (diff) | |
download | samba-fcf0300ffeb7028ea5d4e1d3b6f575e43f4eb110.tar.gz samba-fcf0300ffeb7028ea5d4e1d3b6f575e43f4eb110.tar.bz2 samba-fcf0300ffeb7028ea5d4e1d3b6f575e43f4eb110.zip |
Some compilers want (void) instead of just () in function declarations.
(This used to be commit c086c7ab94d676e22801bc78588c116cf2e5a4eb)
-rw-r--r-- | source3/include/includes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index efaebdf182..03d1b3424b 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -722,7 +722,7 @@ union semun { filename_completion_function() */ # ifndef HAVE_READLINE_FCF_PROTO -extern char *filename_completion_function (); +char *filename_completion_function(void); # endif #endif |