Move tun.c into the module's own directory, since it is specific to the

module subsystem.
This commit is contained in:
pgoyette 2016-09-10 03:26:10 +00:00
parent afcf8ca07e
commit 9a575d933d
2 changed files with 3 additions and 5 deletions

View File

@ -1,9 +1,7 @@
# $NetBSD: Makefile,v 1.1 2016/09/10 02:20:10 pgoyette Exp $
# $NetBSD: Makefile,v 1.2 2016/09/10 03:26:10 pgoyette Exp $
.include "../Makefile.inc"
.PATH: ${S}/net
KMOD= tun
SRCS= tun.c

View File

@ -1,4 +1,4 @@
/* $NetBSD: tun.c,v 1.1 2016/09/10 02:20:11 pgoyette Exp $ */
/* $NetBSD: tun.c,v 1.1 2016/09/10 03:26:10 pgoyette Exp $ */
/*-
* Copyright (c) 2016 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tun.c,v 1.1 2016/09/10 02:20:11 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: tun.c,v 1.1 2016/09/10 03:26:10 pgoyette Exp $");
#include <sys/errno.h>
#include <sys/module.h>