Annotation of embedaddon/coova-chilli/src/main.c, revision 1.1

1.1     ! misho       1: /* 
        !             2:  *
        !             3:  * chilli - ChilliSpot.org. A Wireless LAN Access Point Controller.
        !             4:  * Copyright (C) 2003, 2004, 2005 Mondru AB.
        !             5:  * Copyright (C) 2006 PicoPoint B.V.
        !             6:  * Copyright (c) 2006-2007 David Bird <david@coova.com>
        !             7:  *
        !             8:  * The contents of this file may be used under the terms of the GNU
        !             9:  * General Public License Version 2, provided that the above copyright
        !            10:  * notice and this permission notice is included in all copies or
        !            11:  * substantial portions of the software.
        !            12:  * 
        !            13:  */
        !            14: 
        !            15: #include "system.h"
        !            16: 
        !            17: extern int chilli_main(int argc, char **argv);
        !            18: 
        !            19: int main(int argc, char **argv)
        !            20: {
        !            21:   int ret;
        !            22: #ifdef MTRACE
        !            23:   mtrace();  /* Turn on mtrace function */
        !            24: #endif
        !            25:   ret = chilli_main(argc, argv);
        !            26: #ifdef MTRACE
        !            27:   muntrace();  /* Turn off mtrace function */
        !            28: #endif
        !            29:   return ret;
        !            30: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>