/* sys/pause.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */

#include <sys/emx.h>
#define INCL_DOSPROCESS
#include <os2emx.h>
#include "syscalls.h"

void __pause (void)
{
  while (DosSleep (0xffffffff) == 0)
    ;
}
