1 /*
2  * ZFirst.c
3  *
4  * This function is used to implement memory validity checking
5  * for TURBO-C.  It is only needed if CHECKSUM_CODE is defined.
6  *
7  * Link this as the first object module in the TLINK command line.
8  * The CHECKSUM_CODE routines use the address of ZFirst() to get
9  * an idea of where the first function is in memory.
10  *
11  * To include this routine, specify -DMAP on the MAKE command line.
12  */
13 
ZFirst(void)14  void ZFirst (void)
15  {
16  }
17