don't ifdef _KERNEL

This commit is contained in:
christos 2017-12-08 23:57:57 +00:00
parent f0d31504f3
commit cbb79c448d
1 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: hexdump.c,v 1.2 2017/12/08 23:49:01 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: hexdump.c,v 1.3 2017/12/08 23:57:57 christos Exp $");
#ifndef _KERNEL
#ifdef DEBUG_HEXDUMP
#include <stdio.h>
#include <ctype.h>
#include <string.h>
@ -83,7 +83,7 @@ hexdump(const char *msg, const void *ptr, size_t len)
}
}
#ifndef _KERNEL
#ifdef DEBUG_HEXDUMP
int
main(int argc, char *argv[])
{