Rivoreo Source Code Repositories
src.rivoreo.one
/
net
/
nginx-mbedtls
/
refs/heads/nginx-1.5-mbedtls
/
.
/
debian
/
modules
/
nginx-development-kit
/
auto
/
src
/
palloc.h
blob: 798e360297ee44eb235989bce9288e3b565321dc [
file
] [
log
] [
blame
] [
raw
]
#define
%
2
%
_pallocp
(
p
,
pl
)
p
=
%
1
%
_palloc
(
pl
,
sizeof
(*
p
))
#define
%
2
%
_pallocpn
(
p
,
pl
,
n
)
p
=
%
1
%
_palloc
(
pl
,
sizeof
(*
p
)*(
n
))
#define
%
2
%
_pcallocp
(
p
,
pl
)
p
=
%
1
%
_pcalloc
(
pl
,
sizeof
(*
p
))
#define
%
2
%
_pcallocpn
(
p
,
pl
,
n
)
p
=
%
1
%
_pcalloc
(
pl
,
sizeof
(*
p
)*(
n
))