xref: /plan9-contrib/sys/src/cmd/ld/Plan9.c (revision 40d015479ed36701ae6dcfd8814f849fc6285e8d)
1 #include	"l.h"
2 
3 void*
mysbrk(ulong size)4 mysbrk(ulong size)
5 {
6 	return sbrk(size);
7 }
8 
9 int
fileexists(char * s)10 fileexists(char *s)
11 {
12 	uchar dirbuf[400];
13 
14 	/* it's fine if stat result doesn't fit in dirbuf, since even then the file exists */
15 	return stat(s, dirbuf, sizeof(dirbuf)) >= 0;
16 }
17