1 #include "csf.h"
2 #include "csfimpl.h"
3 
4 /* reset Merrno variable
5  * ResetMerrno sets the Merrno variable to NOERROR (0).
6  *
7  * example
8  * .so examples/testcsf.tr
9  */
ResetMerrno(void)10 void ResetMerrno(void)
11 {
12 	Merrno = NOERROR;
13 }
14