mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
3bfe8a0b3c
* ftpfs.c (netrc_next): Turned strange "const char * const keywords" into more alike "const char const * keywords". Still, think, it's too strict. * smbfs.c: Add #define BOOL_DEFINED before inclusion of samba headers. Libncurses(or slang?) defines BOOL and that can cause problems. (In fact, I can't find references to that const, but sure, I hade reason to do that:) * util-alone.h: Declare load_anon_passwd() to avoid warnings.
7 lines
86 B
C
7 lines
86 B
C
#ifndef _UTIL_ALONE_H_
|
|
#define _UTIL_ALONE_H_
|
|
|
|
char *load_anon_passwd (void);
|
|
|
|
#endif
|