Import sources from 2011-03-30 iso image - sys/include

This commit is contained in:
Taru Karttunen 2011-03-30 16:47:56 +03:00
parent e5888a1ffd
commit c558a99e0b
105 changed files with 11410 additions and 0 deletions

20
sys/include/ape/libnet.h Executable file
View file

@ -0,0 +1,20 @@
#ifndef __LIBNET_H
#define __LIBNET_H
#ifndef _NET_EXTENSION
This header file is not defined in ANSI or POSIX
#endif
#pragma lib "/$M/lib/ape/libnet.a"
#define NETPATHLEN 40
extern int accept(int, char*);
extern int announce(char*, char*);
extern int dial(char*, char*, char*, int*);
extern int hangup(int);
extern int listen(char*, char*);
extern char* netmkaddr(char*, char*, char*);
extern int reject(int, char*, char *);
extern char dialerrstr[64];
#endif /* __LIBNET_H */