Improved build system and POSIX compatibility

Fixed few bugs related to build system and POSIX compatabilty.
This commit is contained in:
2025-04-05 13:29:50 +03:00
parent 83a4e723bf
commit 0683389d7b
4 changed files with 7 additions and 5 deletions

View File

@@ -1,2 +1,3 @@
#!/bin/sh
find . \( -iname "*.h" -o -iname "*.c" \) -exec sed -i "s/[ \t]*$//" {} \;
find . \( -iname "*.h" -o -iname "*.c" \) -exec sed -i .bak "s/[ ]*$//" {} \;
find . -iname "*.bak" -exec rm {} \;