Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/applets/usage.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (hide annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File MIME type: text/plain
File size: 295 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 niro 532 /* vi: set sw=4 ts=4: */
2     #include <unistd.h>
3    
4     #include "../include/autoconf.h"
5     #include "../include/busybox.h"
6    
7     static const char usage_messages[] = ""
8     #define MAKE_USAGE
9     #include "usage.h"
10     #include "applets.h"
11     ;
12    
13     int main(void)
14     {
15     write(1, usage_messages, sizeof(usage_messages));
16     return 0;
17     }