re-enable making the old help system for Linux/Cygwin

by --enable-help --enable-oldapps
This commit is contained in:
Holger Vogt 2021-07-08 15:34:41 +02:00
parent d34d1e7c7c
commit 973a60b898
1 changed files with 6 additions and 1 deletions

View File

@ -13,6 +13,8 @@ Author: 1986 Wayne A. Christopher, U. C. Berkeley CAD Group
#include "frontend/variable.h"
#include "misc/tilde.h"
#ifndef X_DISPLAY_MISSING
Widget toplevel;
#endif
@ -117,7 +119,10 @@ cp_getvar(char *n, enum cp_types type, void *r, size_t rs)
}
char *
cp_tildexpand(char *s)
cp_tildexpand(const char *s)
{
return tildexpand(s);
}
void
controlled_exit(int status) { exit(status); }