Do not define macros starting with _

This commit is contained in:
Radim Kolar 2020-06-06 11:13:01 +02:00
parent 352e2ccd05
commit 9e3fe1e0a7
2 changed files with 6 additions and 6 deletions

View File

@ -7,8 +7,8 @@
* use of this software. * * use of this software. *
\*********************************************************************/ \*********************************************************************/
#ifndef _FSP_CLIENT_DEF_H_ #ifndef FSP_CLIENT_DEF_H_
#define _FSP_CLIENT_DEF_H_ 1 #define FSP_CLIENT_DEF_H_ 1
#include "common_def.h" #include "common_def.h"
#include "client_conf.h" #include "client_conf.h"
@ -45,4 +45,4 @@ typedef struct rdirent { unsigned long d_fileno;
unsigned short d_namlen; unsigned short d_namlen;
char *d_name; } rdirent; char *d_name; } rdirent;
#endif /* _FSP_CLIENT_DEF_H_ */ #endif /* FSP_CLIENT_DEF_H_ */

View File

@ -8,8 +8,8 @@
* use of this software. * * use of this software. *
\*********************************************************************/ \*********************************************************************/
#ifndef _FSP_COMMON_DEF_H_ #ifndef FSP_COMMON_DEF_H_
#define _FSP_COMMON_DEF_H_ 1 #define FSP_COMMON_DEF_H_ 1
#include <stdio.h> #include <stdio.h>
@ -156,4 +156,4 @@ typedef struct RDIRENT { unsigned char bb_time[4];
#define MAX_DELAY 300000L #define MAX_DELAY 300000L
#define DEFAULT_TIMEOUT 360 #define DEFAULT_TIMEOUT 360
#endif /* _FSP_COMMON_DEF_H_ */ #endif /* FSP_COMMON_DEF_H_ */