source: trunk/src/emx/src/lib/sys/pause.c@ 18

Last change on this file since 18 was 18, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 230 bytes
Line 
1/* sys/pause.c (emx+gcc) -- Copyright (c) 1996 by Eberhard Mattes */
2
3#define INCL_DOSPROCESS
4#include <os2emx.h>
5#include <emx/syscalls.h>
6#include "syscalls.h"
7
8void __pause (void)
9{
10 while (DosSleep (0xffffffff) == 0)
11 ;
12}
Note: See TracBrowser for help on using the repository browser.