File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / inc / defs.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Thu Aug 28 13:17:41 2008 UTC (15 years, 8 months ago) by misho
Branches: misho
CVS tags: start, cfg3_0
AITNET library for configs

    1: #ifndef __DEFS_H
    2: #define __DEFS_H
    3: 
    4: #define MAX_STR		255
    5: 
    6: #define LOGERR	{ \
    7: 			cfgErrno = errno; \
    8: 			bzero(cfgError, MAX_STR + 1); \
    9: 			strncpy(cfgError, strerror(errno), MAX_STR); \
   10: 		}
   11: 
   12: 
   13: extern int cfgErrno;
   14: extern char cfgError[];
   15: 
   16: 
   17: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>