"Fossies" - the Fresh Open Source Software archive

Member "tofrodos/src/utility.h" of archive tofrodos-1.7.12a.tar.gz:


/*
	utility.h	Utility functions.
	Copyright (c) 1996,1997 by Christopher Heng. All rights reserved.

	$Id: utility.h,v 1.1 2004/10/01 12:33:39 chris Exp $
*/

#if !defined(UTILITY_H_INCLUDED)
#define	UTILITY_H_INCLUDED

#if defined(__cplusplus)
extern "C" {
#endif

/* function declarations */
#if defined(__WATCOMC__)	/* errnomem() never returns */
#pragma aux errnomem aborts
#endif
extern void errnomem ( int exitcode );
extern void * xmalloc ( size_t len );
extern char * xstrdup( const char * s );

#if defined(__cplusplus)
}
#endif


#endif