/* sys/exit.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */

#include <os2emx.h>

void __exit (int rc)
{
  while (1)
    DosExit (EXIT_PROCESS, rc);
}
