diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-06-10 06:43:23 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-06-10 06:43:23 -0700 |
commit | 6c331fcee3336398d5f3dd12e6850d26876bc712 (patch) | |
tree | 19a0a9271f7eb281b726f202c70234344047ea7d /protsym.c | |
parent | 3bfc05ec87457b322918986bfc83385839026e49 (diff) | |
download | txr-6c331fcee3336398d5f3dd12e6850d26876bc712.tar.gz txr-6c331fcee3336398d5f3dd12e6850d26876bc712.tar.bz2 txr-6c331fcee3336398d5f3dd12e6850d26876bc712.zip |
Version 217.txr-217
* RELNOTES: Updated.
* configure, txr.1: Bumped version and date.
* share/txr/stdlib/ver.tl: Likewise.
* txr.vim, tl.vim: Regenerated.
* protsym.c: Likewise.
Diffstat (limited to 'protsym.c')
-rw-r--r-- | protsym.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -147,6 +147,10 @@ extern val zerop_s, zeroplus_s, zone_s; #if HAVE_DLOPEN extern val dlhandle_s, dlsym_s; #endif +#if HAVE_FCNTL +extern val flock_s, len_s, pid_s, start_s, type_s; +extern val whence_s; +#endif #if HAVE_GRGID extern val group_s, mem_s; #endif @@ -287,6 +291,10 @@ val *protected_sym[] = { #if HAVE_DLOPEN &dlhandle_s, &dlsym_s, #endif +#if HAVE_FCNTL + &flock_s, &len_s, &pid_s, &start_s, &type_s, + &whence_s, +#endif #if HAVE_GRGID &group_s, &mem_s, #endif |