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

#ifndef __DEFS_H
#define __DEFS_H

#define MAX_STR		255

#define LOGERR	{ \
			cfgErrno = errno; \
			bzero(cfgError, MAX_STR + 1); \
			strncpy(cfgError, strerror(errno), MAX_STR); \
		}


extern int cfgErrno;
extern char cfgError[];


#endif

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