diff options
author | Paul Smith <psmith@gnu.org> | 2013-05-27 13:01:48 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-05-27 13:01:48 -0400 |
commit | e8f5d322cf720f65a1d24c1219bcedef8af9e6ec (patch) | |
tree | e50750525d4a4576033edb283f023891ede2c668 /load.c | |
parent | dc922e3f4c442255ba8deb84c9300aa7e3a6108c (diff) | |
download | gunmake-e8f5d322cf720f65a1d24c1219bcedef8af9e6ec.tar.gz |
Porting to VMS, from Hartmut Becker.
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -231,11 +231,10 @@ load_file (const gmk_floc *flocp, const char **ldname, int noerror) return 0; } -int -unload_file (struct file *file) +void +unload_file (const char *name) { - fatal (flocp, "INTERNAL: Cannot unload when load is not supported!"); - return 0; + fatal (NILF, "INTERNAL: Cannot unload when load is not supported!"); } #endif /* MAKE_LOAD */ |