changed system-calls to avoid namespace pollution

This commit is contained in:
eck
1990-01-22 11:13:26 +00:00
parent 67f0c95888
commit 90819543f6
16 changed files with 80 additions and 70 deletions

View File

@@ -5,9 +5,9 @@
#include <stdio.h>
int unlink(const char *path);
int _unlink(const char *path);
int
remove(const char *filename) {
return unlink(filename);
return _unlink(filename);
}