mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Make the builtin unix macro work as it should (well like Solaris's,
GNU's, and OSF1's).
This commit is contained in:
parent
cecc7b0974
commit
bbfd144724
1 changed files with 5 additions and 1 deletions
|
|
@ -39,7 +39,7 @@
|
|||
static char sccsid[] = "@(#)eval.c 8.1 (Berkeley) 6/6/93";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id: eval.c,v 1.7 1997/07/23 06:50:04 charnier Exp $";
|
||||
"$Id: eval.c,v 1.8 1997/08/18 21:01:45 jlemon Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
|
|
@ -370,6 +370,10 @@ register int td;
|
|||
dodefn(argv[n]);
|
||||
break;
|
||||
|
||||
case MACRTYPE:
|
||||
pbstr("");
|
||||
break;
|
||||
|
||||
default:
|
||||
errx(1, "eval: major botch");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue