picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

start.c (231B)


      1 /* 03sep06abu
      2  * (c) Software Lab. Alexander Burger
      3  */
      4 
      5 extern void main2(int ac, char *av[]) __attribute__ ((noreturn));
      6 int main(int ac, char *av[]) __attribute__ ((noreturn));
      7 
      8 int main(int ac, char *av[]) {
      9    main2(ac,av);
     10 }