1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Use opendev(3) rather than open(2) to please lazy people like me that

don't want to type "/dev/".
It's somewhat an abuse of opendev(), but millert@ said it was ok.
This commit is contained in:
miod 2002-02-19 20:20:39 +00:00
parent cc29191025
commit 8995e2e4f0
2 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,10 @@
# $OpenBSD: Makefile,v 1.4 2002/02/19 19:51:54 miod Exp $
# $OpenBSD: Makefile,v 1.5 2002/02/19 20:20:39 miod Exp $
.if ${MACHINE}=="hp300"
PROG= hilinfo
CFLAGS+= -I${.CURDIR}/../../sys/arch/hp300
DPADD= ${LIBUTIL}
LDADD= -lutil
.else
NOPROG=yes
.endif

View File

@ -1,4 +1,4 @@
/* $OpenBSD: hilinfo.c,v 1.3 2002/02/19 19:51:54 miod Exp $ */
/* $OpenBSD: hilinfo.c,v 1.4 2002/02/19 20:20:39 miod Exp $ */
/*
* Copyright (c) 1987-1993, The University of Utah and
* the Center for Software Science at the University of Utah (CSS).
@ -25,6 +25,7 @@
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <util.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <dev/hilioctl.h>
@ -100,7 +101,7 @@ getinfo(dname)
{
int f;
f = open(dname, 0);
f = opendev(dname, 0, OPENDEV_BLCK, NULL);
if (f < 0) {
warn("open(%s)", dname);
return 0;