1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-03 06:45:37 -08:00

Remove a couple of unhelpful defines.

ok nicm@
This commit is contained in:
mmcc 2015-10-21 15:47:41 +00:00
parent 386e87b815
commit 2c9697c487
2 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: history.c,v 1.50 2015/10/21 15:20:37 mmcc Exp $ */
/* $OpenBSD: history.c,v 1.51 2015/10/21 15:47:41 mmcc Exp $ */
/*
* command history
@ -243,7 +243,7 @@ c_fc(char **wp)
return 1;
}
n = fstat(shf_fileno(shf), &statb) < 0 ? 128 :
n = fstat(shf->fd, &statb) < 0 ? 128 :
statb.st_size + 1;
Xinit(xs, xp, n, hist_source->areap);
while ((n = shf_read(xp, Xnleft(xs, xp), shf)) > 0) {

View File

@ -1,4 +1,4 @@
/* $OpenBSD: shf.h,v 1.6 2005/12/11 18:53:51 deraadt Exp $ */
/* $OpenBSD: shf.h,v 1.7 2015/10/21 15:47:41 mmcc Exp $ */
#ifndef SHF_H
# define SHF_H
@ -9,8 +9,6 @@
#define SHF_BSIZE 512
#define shf_fileno(shf) ((shf)->fd)
#define shf_setfileno(shf,nfd) ((shf)->fd = (nfd))
#define shf_getc(shf) ((shf)->rnleft > 0 ? (shf)->rnleft--, *(shf)->rp++ : \
shf_getchar(shf))
#define shf_putc(c, shf) ((shf)->wnleft == 0 ? shf_putchar((c), (shf)) : \