fixed whitespace for *.c and *.h files

This commit is contained in:
stefan-hoeck 2021-01-22 14:25:54 +01:00 committed by G. Allais
parent 1218abfa18
commit 8b96614454
4 changed files with 2 additions and 4 deletions

View File

@ -1,3 +1,3 @@
int chmod(char** str, int perm) {
return 0;
}
}

View File

@ -77,4 +77,4 @@ void win32_sleep(int ms) {
int win32_modenv(const char* name, const char* value, int overwrite) {
if (!overwrite && getenv(name)) return 0;
return _putenv_s(name, value);
}
}

View File

@ -20,4 +20,3 @@ int applyIntFnPure(int x, int y, IntFn f) {
char applyCharFn(char c, int x, CharFn f) {
return f(c, x);
}

View File

@ -29,4 +29,3 @@ namedpoint* mkNamedPoint(char* str, point* p) {
void freeNamedPoint(namedpoint* np) {
free(np);
}