/* _exit.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */

#include <sys/emx.h>
#include <stdlib.h>

void _exit (int ret)
{
  if (ret < 0 || ret > 255)
    ret = 255;
  for (;;)
    __exit (ret);
}
