Skip to content

Commit 7acce59

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 57cc8d4 commit 7acce59

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
@@ -1783,15 +1783,6 @@
17831783
# define quadmath_format_needed Perl_quadmath_format_needed
17841784
# define quadmath_format_valid Perl_quadmath_format_valid
17851785
# endif
1786-
# if defined(USE_THREADS)
1787-
# define Perl_do_aexec(mTHX,a,b,c) do_aexec(a,b,c)
1788-
# define Perl_my_lstat(mTHX) my_lstat()
1789-
# define Perl_my_stat(mTHX) my_stat()
1790-
# else
1791-
# define Perl_do_aexec do_aexec
1792-
# define Perl_my_lstat my_lstat
1793-
# define Perl_my_stat my_stat
1794-
# endif
17951786
# if defined(WIN32)
17961787
# define get_win32_message_utf8ness(a) Perl_get_win32_message_utf8ness(aTHX_ a)
17971788
# else

0 commit comments

Comments
 (0)