home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / tnlogin.zip / sleep.c < prev    next >
C/C++ Source or Header  |  1994-05-25  |  125b  |  12 lines

  1. /* sleep.c */
  2.  
  3. #define INCL_DOS
  4. #include <os2.h>
  5.  
  6. void msleep(long ms)
  7. {
  8.   DosSleep(ms);
  9. }
  10.  
  11. /* end of sleep.c */
  12.