From d25be461b9e97e055cd0d6cba1036677e2c187e1 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 18 Jul 2001 03:34:04 +0000 Subject: [PATCH] Added multiple-inclusion protection. --- src/sbbs3/ftpsrvr.h | 7 ++++++- src/sbbs3/mailsrvr.h | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/sbbs3/ftpsrvr.h b/src/sbbs3/ftpsrvr.h index bc8b5f528d..256c125298 100644 --- a/src/sbbs3/ftpsrvr.h +++ b/src/sbbs3/ftpsrvr.h @@ -35,6 +35,9 @@ * Note: If this box doesn't appear square, then you need to fix your tabs. * ****************************************************************************/ +#ifndef _FTPSRVR_H_ +#define _FTPSRVR_H_ + #include "client.h" /* client_t */ typedef struct { @@ -132,4 +135,6 @@ DLLEXPORT void DLLCALL ftp_terminate(void); DLLEXPORT char* DLLCALL ftp_ver(void); #ifdef __cplusplus } -#endif \ No newline at end of file +#endif + +#endif /* Don't add anything after this line */ \ No newline at end of file diff --git a/src/sbbs3/mailsrvr.h b/src/sbbs3/mailsrvr.h index 4d67c3cc3e..fc5bd02abe 100644 --- a/src/sbbs3/mailsrvr.h +++ b/src/sbbs3/mailsrvr.h @@ -35,6 +35,9 @@ * Note: If this box doesn't appear square, then you need to fix your tabs. * ****************************************************************************/ +#ifndef _MAILSRVR_H_ +#define _MAILSRVR_H_ + #include "client.h" /* client_t */ typedef struct { @@ -136,4 +139,6 @@ DLLEXPORT void DLLCALL mail_terminate(void); DLLEXPORT char* DLLCALL mail_ver(void); #ifdef __cplusplus } -#endif \ No newline at end of file +#endif + +#endif /* Don't add anything after this line */ \ No newline at end of file -- GitLab