Skip to content
Snippets Groups Projects
Commit d25be461 authored by rswindell's avatar rswindell
Browse files

Added multiple-inclusion protection.

parent ab1c765b
Branches
Tags
No related merge requests found
...@@ -35,6 +35,9 @@ ...@@ -35,6 +35,9 @@
* Note: If this box doesn't appear square, then you need to fix your tabs. * * 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 */ #include "client.h" /* client_t */
typedef struct { typedef struct {
...@@ -132,4 +135,6 @@ DLLEXPORT void DLLCALL ftp_terminate(void); ...@@ -132,4 +135,6 @@ DLLEXPORT void DLLCALL ftp_terminate(void);
DLLEXPORT char* DLLCALL ftp_ver(void); DLLEXPORT char* DLLCALL ftp_ver(void);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
\ No newline at end of file
#endif /* Don't add anything after this line */
\ No newline at end of file
...@@ -35,6 +35,9 @@ ...@@ -35,6 +35,9 @@
* Note: If this box doesn't appear square, then you need to fix your tabs. * * 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 */ #include "client.h" /* client_t */
typedef struct { typedef struct {
...@@ -136,4 +139,6 @@ DLLEXPORT void DLLCALL mail_terminate(void); ...@@ -136,4 +139,6 @@ DLLEXPORT void DLLCALL mail_terminate(void);
DLLEXPORT char* DLLCALL mail_ver(void); DLLEXPORT char* DLLCALL mail_ver(void);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
\ No newline at end of file
#endif /* Don't add anything after this line */
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment