Module Name:    src
Committed By:   riastradh
Date:           Thu Dec  5 04:17:13 UTC 2019

Modified Files:
        src/sys/lib/libkern: libkern.h

Log Message:
#ifdef notyet ---> never


To generate a diff of this commit:
cvs rdiff -u -r1.135 -r1.136 src/sys/lib/libkern/libkern.h

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

Modified files:

Index: src/sys/lib/libkern/libkern.h
diff -u src/sys/lib/libkern/libkern.h:1.135 src/sys/lib/libkern/libkern.h:1.136
--- src/sys/lib/libkern/libkern.h:1.135	Fri Nov 22 14:28:46 2019
+++ src/sys/lib/libkern/libkern.h	Thu Dec  5 04:17:13 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: libkern.h,v 1.135 2019/11/22 14:28:46 maxv Exp $	*/
+/*	$NetBSD: libkern.h,v 1.136 2019/12/05 04:17:13 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 1992, 1993
@@ -546,23 +546,4 @@ int	strnvisx(char *, size_t, const char 
 #define VIS_SAFE	0x20
 #define VIS_TRIM	0x40
 
-#ifdef notyet
-/*
- * LZF hashtable/state size: on uncompressible data and on a system with
- * a sufficiently large d-cache, a larger table produces a considerable
- * speed benefit.  On systems with small memory and caches, however...
- */
-#if defined(__vax__) || defined(__m68k__)
-#define LZF_HLOG 14
-#else
-#define LZF_HLOG 15
-#endif
-typedef const uint8_t *LZF_STATE[1 << LZF_HLOG];
-
-unsigned int lzf_compress_r (const void *const, unsigned int, void *,
-			     unsigned int, LZF_STATE);
-unsigned int lzf_decompress (const void *const, unsigned int, void *,
-			     unsigned int);
-#endif
-
 #endif /* !_LIB_LIBKERN_LIBKERN_H_ */

Reply via email to