X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fsysdep_decls.h;h=8ca2bc19b601f752896720e63132e19e6f75ffd2;hb=8904d5e7123ba2f4588f48deed392b1a2d9faa39;hp=a71efe59ac0d11aa277ab3a70e2c3869ee8e98de;hpb=d04e1208cf6c71816adb600c6493c48c7b9610f1;p=citadel.git diff --git a/citadel/sysdep_decls.h b/citadel/sysdep_decls.h index a71efe59a..8ca2bc19b 100644 --- a/citadel/sysdep_decls.h +++ b/citadel/sysdep_decls.h @@ -31,6 +31,12 @@ #define SIZE_T_FMT "%ld" #endif +#if SIZEOF_LOFF_T == SIZEOF_LONG +#define LOFF_T_FMT "%ld" +#else +#define LOFF_T_FMT "%lld" +#endif + void cputbuf(const StrBuf *Buf); #ifdef __GNUC__ @@ -58,11 +64,9 @@ void sysdep_master_cleanup (void); void kill_session (int session_to_kill); void start_daemon (int do_close_stdio); void checkcrash(void); -void cmd_nset (char *cmdbuf); int convert_login (char *NameToConvert); void init_master_fdset(void); void *worker_thread(void *); -void *select_on_master(void *); extern volatile int exit_signal; extern volatile int shutdown_and_halt;