/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. */ #define import_libc #define import_xnames #include /* C_TSLEEP -- Suspend process execution for the specified number of seconds. */ void c_tsleep ( int nseconds ) { XINT x_nsec = nseconds; TSLEEP (&x_nsec); }