Skip to content

Commit e04163b

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 aa3a003 commit e04163b

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
@@ -1117,7 +1117,7 @@ Adpr |OP * |die_sv |NN SV *baseex
11171117
: Used in util.c
11181118
pr |void |die_unwind |NN SV *msv
11191119
: FIXME
1120-
mp |bool |do_aexec |NULLOK SV *really \
1120+
m |bool |do_aexec |NULLOK SV *really \
11211121
|NN SV **mark \
11221122
|NN SV **sp
11231123
: Used in pp_sys.c
@@ -2210,7 +2210,7 @@ Adpr |void |my_exit |U32 status
22102210
Adpr |void |my_failure_exit
22112211
Cdp |I32 |my_fflush_all
22122212
CTdp |Pid_t |my_fork
2213-
mp |I32 |my_lstat
2213+
m |I32 |my_lstat
22142214
Xp |I32 |my_lstat_flags |NULLOK const U32 flags
22152215
RTop |int |my_mkostemp_cloexec \
22162216
|NN char *templte \
@@ -2231,7 +2231,7 @@ CTdp |int |my_socketpair |int family \
22312231
|int type \
22322232
|int protocol \
22332233
|int fd[2]
2234-
mp |I32 |my_stat
2234+
m |I32 |my_stat
22352235
Xp |I32 |my_stat_flags |NULLOK const U32 flags
22362236
p |const char *|my_strerror \
22372237
|const int errnum \

embed.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1830,15 +1830,6 @@
18301830
# define quadmath_format_needed Perl_quadmath_format_needed
18311831
# define quadmath_format_valid Perl_quadmath_format_valid
18321832
# endif
1833-
# if defined(USE_THREADS)
1834-
# define Perl_do_aexec(mTHX,a,b,c) do_aexec(a,b,c)
1835-
# define Perl_my_lstat(mTHX) my_lstat()
1836-
# define Perl_my_stat(mTHX) my_stat()
1837-
# else
1838-
# define Perl_do_aexec do_aexec
1839-
# define Perl_my_lstat my_lstat
1840-
# define Perl_my_stat my_stat
1841-
# endif
18421833
# if defined(WIN32)
18431834
# define get_win32_message_utf8ness(a) Perl_get_win32_message_utf8ness(aTHX_ a)
18441835
# else

0 commit comments

Comments
 (0)