In an "Old C" code, I saw two functions:

outp(base+DATA,*buf++ & 0xFF);
write(base,buf,len);

where the declaration is extern int base; char *buf; int len; and #define DATA 0.

Questions: are those two functions outp() and write() library functions of C? Thanks.