diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-28 12:04:34 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-28 12:04:34 +0000 |
commit | 838c5c485ffba94a1c74a4556e3e4a2b16020923 (patch) | |
tree | edbd5f8a0fa8451c9cf3f709f91070c70d3cb173 /source3/include | |
parent | fb15277b5e4064432feb79f37f010c792cee1634 (diff) | |
download | samba-838c5c485ffba94a1c74a4556e3e4a2b16020923.tar.gz samba-838c5c485ffba94a1c74a4556e3e4a2b16020923.tar.bz2 samba-838c5c485ffba94a1c74a4556e3e4a2b16020923.zip |
fixed problem with snprintf.c and mkproto
(This used to be commit 99430ce899c02b95ab3c577afff7f28c6d5c6c45)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 1b81bb2038..1af68b86d1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -84,6 +84,12 @@ void force_check_log_size( void ); void dbgflush( void ); BOOL dbghdr( int level, char *file, char *func, int line ); +/*The following definitions come from lib/debugparse.c */ + +char *dbg_token2string( dbg_Token tok ); +void dbg_test( void ); +int main( void ); + /*The following definitions come from lib/fault.c */ void fault_setup(void (*fn)(void *)); @@ -162,6 +168,9 @@ int vslprintf(char *str, int n, char *format, va_list ap); int smbrun(char *cmd,char *outfile,BOOL shared); +/*The following definitions come from lib/snprintf.c */ + + /*The following definitions come from lib/system.c */ int sys_select(int maxfd, fd_set *fds,struct timeval *tval); |