[BACK]Return to errx.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/gen/errx.c between version 1.4 and 1.4.10.3

version 1.4, 1999/08/17 03:43:59 version 1.4.10.3, 2002/04/25 04:01:41
Line 45  __RCSID("$NetBSD$");
Line 45  __RCSID("$NetBSD$");
 #ifndef __NO_NAMESPACE_H        /* XXX */  #ifndef __NO_NAMESPACE_H        /* XXX */
 #include "namespace.h"  #include "namespace.h"
 #endif  #endif
   #if HAVE_CONFIG_H
   #include "config.h"
   #endif
 #include <err.h>  #include <err.h>
   
 #ifdef __STDC__  #ifdef __STDC__
Line 58  __weak_alias(errx, _errx)
Line 61  __weak_alias(errx, _errx)
 #endif  #endif
   
 __dead void  __dead void
 #if __STDC__  #ifdef __STDC__
 _errx(int eval, const char *fmt, ...)  _errx(int eval, const char *fmt, ...)
 #else  #else
 _errx(va_alist)  _errx(va_alist)
Line 66  _errx(va_alist)
Line 69  _errx(va_alist)
 #endif  #endif
 {  {
         va_list ap;          va_list ap;
 #if __STDC__  #ifdef __STDC__
         va_start(ap, fmt);          va_start(ap, fmt);
 #else  #else
         int eval;          int eval;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.4.10.3

CVSweb <webmaster@jp.NetBSD.org>