home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
progm
/
clock.zip
/
CLKDLY.C
< prev
next >
Wrap
Text File
|
1986-12-22
|
896b
|
29 lines
/***************************************************** CLKDLY.C
* NAME: CLKDLY
*
* FUNCTION: Delays a moment. Used to implement a "wait"
* operation to suspend program operation so
* don't slow other applications unnecessarily.
*
* EXAMPLE: CLKDLY();
*
* INPUTS: none
*
* OUTPUT: none
*
**************************************************************
* 11/22/86 -RBM- original implementation
**************************************************************/
#define XTRNALGLOBALS 1 /* globals externally defined */
#include "E:CLKGBL.H" /* setup global storage */
/**************************************************************
* BEGIN ROUTINE
**************************************************************/
CLKDLY()
{
} /***** end of routine ******/