*** empty log message ***

This commit is contained in:
Enno Rehling 2002-05-01 19:09:00 +00:00
parent 25685c79af
commit 9382bc9e3a
1 changed files with 2 additions and 9 deletions

View File

@ -68,10 +68,6 @@
** Architecture Dependent **
**** ****/
#if _MSC_VER
# define STRNCPY_HAS_ZEROTERMINATION
#endif
/* für solaris: */
#ifdef SOLARIS
# define _SYS_PROCSET_H
@ -241,9 +237,6 @@ extern char * strdup(const char *s);
# define true ((boolean)!false)
#endif
#ifdef STRNCPY_HAS_ZEROTERMINATION
# define strnzcpy(dst, src, len) strncpy(dst, src, len)
#else
# define strnzcpy(dst, src, len) (strncpy(dst, src, len), len?dst[len]=0:0, dst)
#endif
#define strnzcpy(dst, src, len) (strncpy(dst, src, len), len?dst[len]=0:0, dst)
#endif