Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
v243-stable
/
.
/
coccinelle
/
dup-fcntl.cocci
blob: 8b133b3a24f6547062dd1c0d803dace33c94cd6a [
file
] [
log
] [
blame
] [
raw
]
@@
/* We want to stick with dup() in test-fd-util.c */
position p
:
script
:
python
()
{
p
[
0
].
file
!=
"src/test/test-fd-util.c"
};
expression fd
;
@@
-
dup@p
(
fd
)
+
fcntl
(
fd
,
F_DUPFD
,
3
)