Added source code

This commit is contained in:
hellisabove
2023-03-18 20:26:52 +02:00
commit f3ea0095df
188 changed files with 48888 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
* getcwd
*/
char *
getcwd(pth, len)
char *pth;
size_t len;
{
extern char *getwd();
if(!pth)
pth = (char *)malloc(len+1);
return(getwd(pth));
}