1 /* $NetBSD: main.c,v 1.2 2000/07/29 03:46:15 lukem Exp $ */ 2 3 /*- 4 * Copyright (c) 1999 The NetBSD Foundation, Inc. 5 * All rights reserved. 37 */ 38 39 #include40 41 #ifndef lint 42 __RCSID("$NetBSD: main.c,v 1.2 2000/07/29 03:46:15 lukem Exp $"); 43 #endif /* not lint */ 44 45 #include 46 #include 47 48 #include "ls.h" 49 #include "extern.h" 50 51 int main(int, char *[]); 52 53 int 54 main(int argc, char *argv[]) 55 { 56 57 return (ls_main(argc, argv)); 58 /* NOTREACHED */ 59 }
这也太简单了吧,多此一举?