2006-08-23 03:09:24 +02:00
|
|
|
#include "types.h"
|
|
|
|
#include "stat.h"
|
2006-07-29 00:33:07 +02:00
|
|
|
#include "user.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2007-08-24 22:03:40 +02:00
|
|
|
for(i = 1; i < argc; i++)
|
|
|
|
printf(1, "%s%s", argv[i], i+1 < argc ? " " : "\n");
|
2006-07-29 00:33:07 +02:00
|
|
|
exit();
|
|
|
|
}
|