diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2019-02-26 16:08:55 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2019-02-26 17:47:55 -0600 |
commit | 44f5a72d1aeb131cc2cb464a53809a5a8d90c46e (patch) | |
tree | 8722a70dd685a04496205c864fbeccccbe18c1c9 /src/librc/librc-misc.c | |
parent | 0d378974bfbd69c5427d44c0a43a9f36389aa235 (diff) |
remove hidden-visibility.h
I am removing this on the advice of a member of the Gentoo toolchain
team. It was explained to me that this doesn't offer any significant
benefits to OpenRC.
If anyone ffeels differently, please open a pull request reverting
this and adding an explanation of what it does and how to know which
functions to mark hidden in the future.
This fixes #301.
Diffstat (limited to 'src/librc/librc-misc.c')
-rw-r--r-- | src/librc/librc-misc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/librc/librc-misc.c b/src/librc/librc-misc.c index c6af405c..1f3d23f4 100644 --- a/src/librc/librc-misc.c +++ b/src/librc/librc-misc.c @@ -43,7 +43,6 @@ rc_yesno(const char *value) return false; } -librc_hidden_def(rc_yesno) /** @@ -91,7 +90,6 @@ rc_getfile(const char *file, char **buffer, size_t *len) fclose(fp); return ret; } -librc_hidden_def(rc_getfile) ssize_t rc_getline(char **line, size_t *len, FILE *fp) @@ -116,7 +114,6 @@ rc_getline(char **line, size_t *len, FILE *fp) } return last; } -librc_hidden_def(rc_getline) char * rc_proc_getent(const char *ent _unused) @@ -163,7 +160,6 @@ rc_proc_getent(const char *ent _unused) return NULL; #endif } -librc_hidden_def(rc_proc_getent) RC_STRINGLIST * rc_config_list(const char *file) @@ -202,7 +198,6 @@ rc_config_list(const char *file) return list; } -librc_hidden_def(rc_config_list) static void rc_config_set_value(RC_STRINGLIST *config, char *value) { @@ -373,7 +368,6 @@ rc_config_load(const char *file) return config; } -librc_hidden_def(rc_config_load) char * rc_config_value(RC_STRINGLIST *list, const char *entry) @@ -392,7 +386,6 @@ rc_config_value(RC_STRINGLIST *list, const char *entry) } return NULL; } -librc_hidden_def(rc_config_value) /* Global for caching the strings loaded from rc.conf to avoid reparsing for * each rc_conf_value call */ @@ -438,4 +431,3 @@ rc_conf_value(const char *setting) return rc_config_value(rc_conf, setting); } -librc_hidden_def(rc_conf_value) |