mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-06-16 18:03:44 +08:00
Fixed bug #35874 reserved identifier violation (removed leading underscores from header include guards)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __LWIP_CHECK_H__
|
||||
#define __LWIP_CHECK_H__
|
||||
#ifndef LWIP_HDR_LWIP_CHECK_H__
|
||||
#define LWIP_HDR_LWIP_CHECK_H__
|
||||
|
||||
/* Common header file for lwIP unit tests using the check framework */
|
||||
|
||||
@@ -44,4 +44,4 @@ static Suite* create_suite(const char* name, testfunc *tests, size_t num_tests,
|
||||
return s;
|
||||
}
|
||||
|
||||
#endif /* __LWIP_CHECK_H__ */
|
||||
#endif /* LWIP_HDR_LWIP_CHECK_H__ */
|
||||
|
||||
Reference in New Issue
Block a user