source: trunk/minix/include/minix/minlib.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 712 bytes
Line 
1#ifndef _MINLIB
2#define _MINLIB
3
4#ifndef _ANSI_H
5#include <ansi.h>
6#endif
7
8/* Miscellaneous BSD. */
9_PROTOTYPE(void swab, (char *_from, char *_to, int _count));
10_PROTOTYPE(char *itoa, (int _n));
11_PROTOTYPE(char *getpass, (const char *_prompt));
12
13/* Miscellaneous MINIX. */
14_PROTOTYPE(void std_err, (char *_s));
15_PROTOTYPE(void prints, (const char *_s, ...));
16_PROTOTYPE(int fsversion, (char *_dev, char *_prog));
17_PROTOTYPE(int getprocessor, (void));
18_PROTOTYPE(int load_mtab, (char *_prog_name));
19_PROTOTYPE(int rewrite_mtab, (char *_prog_name));
20_PROTOTYPE(int get_mtab_entry, (char *_s1, char *_s2, char *_s3, char *_s4));
21_PROTOTYPE(int put_mtab_entry, (char *_s1, char *_s2, char *_s3, char *_s4));
22
23#endif
Note: See TracBrowser for help on using the repository browser.