Fix le dumb introduced by my garbage script

This commit is contained in:
Jacob 2023-08-18 20:30:30 +02:00
parent 43232dea24
commit 018a99db01

View file

@ -1,5 +1,3 @@
#ifndef REGEX_H
#define REGEX_H
/* /*
* *
* Mini regex-module inspired by Rob Pike's regex code described in: * Mini regex-module inspired by Rob Pike's regex code described in:
@ -65,4 +63,3 @@ int re_match(const char* pattern, const char* text, int* matchlength);
#endif #endif
#endif /* ifndef _TINY_REGEX_C */ #endif /* ifndef _TINY_REGEX_C */
#endif