mirror of
https://github.com/openbsd/src.git
synced 2025-01-02 22:35:36 -08:00
14 lines
207 B
C
14 lines
207 B
C
/* $OpenBSD: main.c,v 1.4 2012/12/04 02:27:00 deraadt Exp $ */
|
|
|
|
/*
|
|
* Public domain - no warranty.
|
|
*/
|
|
|
|
int ls_main(int argc, char **argv);
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
return ls_main(argc, argv);
|
|
}
|