You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by la...@locus.apache.org on 2000/11/14 15:20:13 UTC

cvs commit: jakarta-tomcat/src/native/mod_jk/common jk_nwmain.c

larryi      00/11/14 06:20:13

  Added:       src/native/mod_jk/common jk_nwmain.c
  Log:
  Porting file from tomcat_32.
  
  Submitted by: Mike Anderson
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat/src/native/mod_jk/common/jk_nwmain.c
  
  Index: jk_nwmain.c
  ===================================================================
  #ifdef NETWARE
  /*
   * NATIVE_MAIN
   */
  
  /*
   * INCLUDES
   */
  
  #include <stdio.h>
  #include <nwthread.h>
  #include <netdb.h>
  
  NETDB_DEFINE_CONTEXT
  
  /*
   * main ()
   *
   * Main entry point -- don't do much more than I've provided
   *
   * Entry:
   *
   * Exit:
   *    Nothing
   */
  
  void main ()
  {
     ExitThread (TSR_THREAD, 0);
  }
  #endif