Author | Jamozed <[email protected]> |
Date | 2021-02-23 23:24:36 |
Commit | 2202ecc52be7bf39a6d5f4caddc0479e8a1ef7e6 |
Parent | 9b704eb0a668dd41692320568dd951d4132613c6 |
strconv: Fix header guard
Diffstat
M | src/strconv.h | | | 6 | +++--- |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/strconv.h b/src/strconv.h index f5c6762..e93c101 100644 --- a/src/strconv.h +++ b/src/strconv.h @@ -30,8 +30,8 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. */ -#ifndef OMKOV_LIB_STRING_H_3EQMSZZK -#define OMKOV_LIB_STRING_H_3EQMSZZK +#ifndef OMKOV_LIB_STRCONV_H_3EQMSZZK +#define OMKOV_LIB_STRCONV_H_3EQMSZZK #include <stdint.h> @@ -45,4 +45,4 @@ uint16_t strtou16(const char *nptr, char **endptr, register int base); uint32_t strtou32(const char *nptr, char **endptr, register int base); uint64_t strtou64(const char *nptr, char **endptr, register int base); -#endif // OMKOV_LIB_STRING_H_3EQMSZZK +#endif // OMKOV_LIB_STRCONV_H_3EQMSZZK