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

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

Diff for /src/lib/libc/md/mdXhl.c between version 1.6 and 1.7

version 1.6, 2003/07/26 19:24:47 version 1.7, 2005/09/26 03:01:41
Line 12 
Line 12 
  */   */
   
 /*  /*
  * Modifed April 29, 1997 by Jason R. Thorpe <thorpej@NetBSD.org>   * Modified April 29, 1997 by Jason R. Thorpe <thorpej@NetBSD.org>
  */   */
   
   #define CONCAT(x,y)     __CONCAT(x,y)
   #define MDNAME(x)       CONCAT(MDALGORITHM,x)
   
   #if !defined(_KERNEL) && defined(__weak_alias)
   #define WA(a,b) __weak_alias(a,b)
   WA(MDNAME(End),CONCAT(_,MDNAME(End)))
   WA(MDNAME(File),CONCAT(_,MDNAME(File)))
   WA(MDNAME(Data),CONCAT(_,MDNAME(Data)))
   #undef WA
   #endif
   
   #include "namespace.h"
   
 #include <sys/types.h>  #include <sys/types.h>
   
   #include MDINCLUDE
 #include <assert.h>  #include <assert.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <errno.h>  #include <errno.h>
Line 24 
Line 38 
 #include <stdlib.h>  #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
   
 #define CONCAT(x,y)     __CONCAT(x,y)  #if HAVE_NBTOOL_CONFIG_H
 #define MDNAME(x)       CONCAT(MDALGORITHM,x)  #include "nbtool_config.h"
   #endif
   
   
   
 char *  char *
 MDNAME(End)(ctx, buf)  MDNAME(End)(ctx, buf)

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb <webmaster@jp.NetBSD.org>