Skip to content

Commit

Permalink
Restore exported functions for module back-compat
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelortmann authored Jul 6, 2024
1 parent ffb125c commit c635a8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ Function global_table[] = {
(Function) open_telnet,
/* 88 - 91 */
(Function) check_tcl_event,
(Function) 0, /* was egg_memcpy -- use memcpy() instead */
(Function) memcpy, /* was egg_memcpy -- use memcpy() instead */
(Function) my_atoul,
(Function) my_strcpy,
/* 92 - 95 */
Expand Down Expand Up @@ -520,10 +520,10 @@ Function global_table[] = {
/* 252 - 255 */
(Function) egg_snprintf,
(Function) egg_vsnprintf,
(Function) 0, /* was egg_memset -- use memset() or egg_bzero() instead */
(Function) 0, /* was egg_strcasecmp -- use strcasecmp() instead */
(Function) memset, /* was egg_memset -- use memset() or egg_bzero() instead */
(Function) strcasecmp, /* was egg_strcasecmp -- use strcasecmp() instead */
/* 256 - 259 */
(Function) 0, /* was egg_strncasecmp -- use strncasecmp() instead */
(Function) strncasecmp, /* was egg_strncasecmp -- use strncasecmp() instead */
(Function) is_file,
(Function) & must_be_owner, /* int */
(Function) & tandbot, /* tand_t * */
Expand Down

0 comments on commit c635a8d

Please sign in to comment.