[BACK]Return to libkern.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / lib / libkern

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

Diff for /src/sys/lib/libkern/libkern.h between version 1.72 and 1.73

version 1.72, 2007/12/25 18:33:44 version 1.73, 2008/01/31 02:36:09
Line 235  tolower(int ch)
Line 235  tolower(int ch)
     ((size_t)(unsigned long)(&(((type *)0)->member)))      ((size_t)(unsigned long)(&(((type *)0)->member)))
 #endif  #endif
   
   #define MTPRNG_RLEN             624
   struct mtprng_state {
           unsigned int mt_idx;
           uint32_t mt_elem[MTPRNG_RLEN];
   };
   
 /* Prototypes for non-quad routines. */  /* Prototypes for non-quad routines. */
 /* XXX notyet #ifdef _STANDALONE */  /* XXX notyet #ifdef _STANDALONE */
 int      bcmp __P((const void *, const void *, size_t));  int      bcmp __P((const void *, const void *, size_t));
Line 307  char *initstate __P((unsigned long, char
Line 313  char *initstate __P((unsigned long, char
 char    *setstate __P((char *));  char    *setstate __P((char *));
 #endif /* SMALL_RANDOM */  #endif /* SMALL_RANDOM */
 long     random __P((void));  long     random __P((void));
   void     mtprng_init(void *, const uint8_t *, size_t);
   uint32_t mtprng_rawrandom(void *);
   uint32_t mtprng_random(void *);
 int      scanc __P((u_int, const u_char *, const u_char *, int));  int      scanc __P((u_int, const u_char *, const u_char *, int));
 int      skpc __P((int, size_t, u_char *));  int      skpc __P((int, size_t, u_char *));
 int      strcasecmp __P((const char *, const char *));  int      strcasecmp __P((const char *, const char *));

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73

CVSweb <webmaster@jp.NetBSD.org>