1 /*
2  * placed in the public domain by Uwe Ohse, uwe@ohse.de.
3  */
4 #ifndef READWRITE_H
5 #define READWRITE_H
6 
7 extern int read(int, char *,unsigned int);
8 extern int write(int, const char *,unsigned int);
9 
10 #endif
11