aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
authorJean-Claude Beaudoin <jean.claude.beaudoin@gmail.com>2016-09-25 22:32:41 -0400
committerJean-Claude Beaudoin <jean.claude.beaudoin@gmail.com>2016-09-25 22:32:41 -0400
commitff158bffe6f7ddc2b727069daa238b396c318e14 (patch)
tree444eacffe5d11c0ee78e7ea8de349005891cb655 /tcc.h
parente38f49e32acfbf2217e65c51a1520eb90ad5ba71 (diff)
downloadtinycc-ff158bffe6f7ddc2b727069daa238b396c318e14.tar.gz
tinycc-ff158bffe6f7ddc2b727069daa238b396c318e14.tar.bz2
Rein in unintended external functions.
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tcc.h b/tcc.h
index 78d0b2d..20846a3 100644
--- a/tcc.h
+++ b/tcc.h
@@ -1167,9 +1167,9 @@ ST_DATA struct TCCState *tcc_state;
#define AFF_PREPROCESS 0x0004 /* preprocess file */
/* public functions currently used by the tcc main function */
-PUB_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
-PUB_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
-PUB_FUNC char *pstrncpy(char *out, const char *in, size_t num);
+ST_FUNC char *pstrcpy(char *buf, int buf_size, const char *s);
+ST_FUNC char *pstrcat(char *buf, int buf_size, const char *s);
+ST_FUNC char *pstrncpy(char *out, const char *in, size_t num);
PUB_FUNC char *tcc_basename(const char *name);
PUB_FUNC char *tcc_fileextension (const char *name);