Home | History | Annotate | Download | only in errno_h
      1 /*
      2  *The <errno.h> header shall provide a
      3  *declaration for errno
      4  *author:ysun (at) lnxw.com
      5  */
      6 
      7 #include <errno.h>
      8 
      9 int errno_test;
     10 
     11 int dummyfcn(void)
     12 {
     13 	errno_test = errno;
     14 	return 0;
     15 }
     16