source: MondoRescue/trunk/mindi-busybox/scripts/usage.c@ 954

Last change on this file since 954 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 222 bytes
Line 
1#include <unistd.h>
2#include "busybox.h"
3
4static const char usage_messages[] =
5#define MAKE_USAGE
6#include "usage.h"
7#include "applets.h"
8;
9
10int main(void)
11{
12 write(1, usage_messages, sizeof(usage_messages));
13 return 0;
14}
Note: See TracBrowser for help on using the repository browser.