diff options
author | midipix <writeonce@midipix.org> | 2024-05-25 15:39:09 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-25 17:46:48 +0000 |
commit | 538329318964e4bfb420b6787f0f30c39ec3394c (patch) | |
tree | 72e5b015482bba2a48b84518039f327a15872834 /src | |
parent | 1e49c7f2662513c72ddb63215519417b169ad75d (diff) | |
download | tpax-538329318964e4bfb420b6787f0f30c39ec3394c.tar.bz2 tpax-538329318964e4bfb420b6787f0f30c39ec3394c.tar.xz |
code base: set the visilbity of internal library interfaces to hidden.
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/tpax_dprintf_impl.c | 4 | ||||
-rw-r--r-- | src/internal/tpax_errinfo_impl.c | 3 | ||||
-rw-r--r-- | src/internal/tpax_tmpfile_impl.c | 4 | ||||
-rw-r--r-- | src/internal/tpax_visibility_impl.h | 26 | ||||
-rw-r--r-- | src/skin/tpax_skin_default.c | 3 |
5 files changed, 36 insertions, 4 deletions
diff --git a/src/internal/tpax_dprintf_impl.c b/src/internal/tpax_dprintf_impl.c index b8d2b0b..bb2a1d2 100644 --- a/src/internal/tpax_dprintf_impl.c +++ b/src/internal/tpax_dprintf_impl.c @@ -10,7 +10,9 @@ #include <unistd.h> #include <errno.h> -int tpax_dprintf(int fd, const char * fmt, ...) +#include "tpax_visibility_impl.h" + +tpax_hidden int tpax_dprintf(int fd, const char * fmt, ...) { int ret; int cnt; diff --git a/src/internal/tpax_errinfo_impl.c b/src/internal/tpax_errinfo_impl.c index 5fd2247..0e68f51 100644 --- a/src/internal/tpax_errinfo_impl.c +++ b/src/internal/tpax_errinfo_impl.c @@ -7,8 +7,9 @@ #include <tpax/tpax.h> #include "tpax_driver_impl.h" #include "tpax_errinfo_impl.h" +#include "tpax_visibility_impl.h" -int tpax_record_error( +tpax_hidden int tpax_record_error( const struct tpax_driver_ctx * dctx, int esyscode, int elibcode, diff --git a/src/internal/tpax_tmpfile_impl.c b/src/internal/tpax_tmpfile_impl.c index 9dd9d40..dbc7765 100644 --- a/src/internal/tpax_tmpfile_impl.c +++ b/src/internal/tpax_tmpfile_impl.c @@ -14,6 +14,8 @@ #include <stdio.h> #include <inttypes.h> +#include "tpax_visibility_impl.h" + #define PPRIX64 "%"PRIx64 /* mkostemp might be guarded by non-standard macros */ @@ -55,7 +57,7 @@ static int tpax_mkostemp(char * tmplate) return fd; } -int tpax_tmpfile(void) +tpax_hidden int tpax_tmpfile(void) { int fd; void * addr; diff --git a/src/internal/tpax_visibility_impl.h b/src/internal/tpax_visibility_impl.h new file mode 100644 index 0000000..6812494 --- /dev/null +++ b/src/internal/tpax_visibility_impl.h @@ -0,0 +1,26 @@ +#ifndef TPAX_VISIBILITY_IMPL_H +#define TPAX_VISIBILITY_IMPL_H + +/**********************************************************************/ +/* PE targets: __dllexport suffices for the purpose of exporting only */ +/* the desired subset of global symbols; this makes the visibility */ +/* attribute not only redundant, but also tricky if not properly */ +/* supported by the toolchain. */ +/* */ +/* When targeting Midipix, __PE__, __dllexport and __dllimport are */ +/* always defined by the toolchain. Otherwise, the absnece of these */ +/* macros has been detected by sofort's ccenv.sh during ./configure, */ +/* and they have accordingly been added to CFLAGS_OS. */ +/**********************************************************************/ + +#ifdef __PE__ +#define tpax_hidden +#else +#ifdef _ATTR_VISIBILITY_HIDDEN +#define tpax_hidden _ATTR_VISIBILITY_HIDDEN +#else +#define tpax_hidden +#endif +#endif + +#endif diff --git a/src/skin/tpax_skin_default.c b/src/skin/tpax_skin_default.c index 4de94b4..68491df 100644 --- a/src/skin/tpax_skin_default.c +++ b/src/skin/tpax_skin_default.c @@ -1,7 +1,8 @@ #include "tpax_driver_impl.h" +#include "tpax_visibility_impl.h" #include "argv/argv.h" -const struct argv_option tpax_default_options[] = { +const tpax_hidden struct argv_option tpax_default_options[] = { {"version", 0,TAG_VERSION,ARGV_OPTARG_NONE,0,0,0, "show version information"}, |