Skip to content

Commit ba7460e

Browse files
committed
embed.fnc: Drop Perl_ on do_aexec my_stat my_lstat
These macros are not for external use, so don't need a Perl_ prefix
1 parent 3563b97 commit ba7460e

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

embed.fnc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ Adpr |OP * |die_sv |NN SV *baseex
11151115
: Used in util.c
11161116
pr |void |die_unwind |NN SV *msv
11171117
: FIXME
1118-
mp |bool |do_aexec |NULLOK SV *really \
1118+
m |bool |do_aexec |NULLOK SV *really \
11191119
|NN SV **mark \
11201120
|NN SV **sp
11211121
: Used in pp_sys.c
@@ -2207,7 +2207,7 @@ Adpr |void |my_exit |U32 status
22072207
Adpr |void |my_failure_exit
22082208
Cdp |I32 |my_fflush_all
22092209
CTdp |Pid_t |my_fork
2210-
mp |I32 |my_lstat
2210+
m |I32 |my_lstat
22112211
Xp |I32 |my_lstat_flags |NULLOK const U32 flags
22122212
RTop |int |my_mkostemp_cloexec \
22132213
|NN char *templte \
@@ -2228,7 +2228,7 @@ CTdp |int |my_socketpair |int family \
22282228
|int type \
22292229
|int protocol \
22302230
|int fd[2]
2231-
mp |I32 |my_stat
2231+
m |I32 |my_stat
22322232
Xp |I32 |my_stat_flags |NULLOK const U32 flags
22332233
p |const char *|my_strerror \
22342234
|const int errnum \

embed.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1781,15 +1781,6 @@
17811781
# define quadmath_format_needed Perl_quadmath_format_needed
17821782
# define quadmath_format_valid Perl_quadmath_format_valid
17831783
# endif
1784-
# if defined(USE_THREADS)
1785-
# define Perl_do_aexec(mTHX,a,b,c) do_aexec(a,b,c)
1786-
# define Perl_my_lstat(mTHX) my_lstat()
1787-
# define Perl_my_stat(mTHX) my_stat()
1788-
# else
1789-
# define Perl_do_aexec do_aexec
1790-
# define Perl_my_lstat my_lstat
1791-
# define Perl_my_stat my_stat
1792-
# endif
17931784
# if defined(WIN32)
17941785
# define get_win32_message_utf8ness(a) Perl_get_win32_message_utf8ness(aTHX_ a)
17951786
# else

0 commit comments

Comments
 (0)