replaced potentially reserved name used as include guard

This commit is contained in:
poum 2019-04-04 11:07:38 +02:00
parent 01e1cbd4f5
commit d7dc54807e
No known key found for this signature in database
GPG key ID: 50F415671A4617C6

View file

@ -27,8 +27,8 @@
#include <stdint.h>
#ifndef _ZONEDETECT_H_
#define _ZONEDETECT_H_
#ifndef INCL_ZONEDETECT_H_
#define INCL_ZONEDETECT_H_
typedef enum {
ZD_LOOKUP_IGNORE = -3,
@ -71,4 +71,4 @@ const char *ZDLookupResultToString(ZDLookupResult result);
}
#endif
#endif
#endif // INCL_ZONEDETECT_H_