[BACK]Return to vis.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/vis.c between version 1.19 and 1.19.6.2

version 1.19, 2000/01/22 22:42:45 version 1.19.6.2, 2002/03/08 21:35:21
Line 34 
Line 34 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
   
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
 #if !defined(lint)  #if defined(LIBC_SCCS) && !defined(lint)
 __RCSID("$NetBSD$");  __RCSID("$NetBSD$");
 #endif /* not lint */  #endif /* LIBC_SCCS and not lint */
   
 #include "namespace.h"  #include "namespace.h"
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  
 #include <limits.h>  
 #include <stdio.h>  
 #include <string.h>  
 #include <vis.h>  #include <vis.h>
   
 #ifdef __weak_alias  #ifdef __weak_alias
Line 59  __weak_alias(svis,_svis)
Line 54  __weak_alias(svis,_svis)
 __weak_alias(vis,_vis)  __weak_alias(vis,_vis)
 #endif  #endif
   
   #if !HAVE_VIS_H
   #include <ctype.h>
   #include <limits.h>
   #include <stdio.h>
   #include <string.h>
   
 #undef BELL  #undef BELL
 #if defined(__STDC__)  #if defined(__STDC__)
 #define BELL '\a'  #define BELL '\a'
Line 294  strvisx(dst, src, len, flag)
Line 295  strvisx(dst, src, len, flag)
         MAKEEXTRALIST(flag, extra);          MAKEEXTRALIST(flag, extra);
         return (strsvisx(dst, src, len, flag, extra));          return (strsvisx(dst, src, len, flag, extra));
 }  }
   #endif

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.19.6.2

CVSweb <webmaster@jp.NetBSD.org>