mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
12 lines
220 B
C
12 lines
220 B
C
|
#ifndef __BUSYBOX_FUNCTIONS_H__
|
||
|
#define __BUSYBOX_FUNCTIONS_H__
|
||
|
|
||
|
int
|
||
|
mkswap(char *device_name, int pages, int check);
|
||
|
/* pages = 0 for autodetection */
|
||
|
|
||
|
int
|
||
|
fdflush(char *filename);
|
||
|
|
||
|
#endif /* __BUSYBOX_FUNCTIONS_H__ */
|