]> granicus.if.org Git - strace/blob - listen.c
Fix preprocessor indentation
[strace] / listen.c
1 /*
2  * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
3  * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
4  * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
5  * Copyright (c) 1996-2000 Wichert Akkerman <wichert@cistron.nl>
6  * Copyright (c) 1999-2018 The strace developers.
7  * All rights reserved.
8  *
9  * SPDX-License-Identifier: LGPL-2.1-or-later
10  */
11
12 #include "defs.h"
13
14 SYS_FUNC(listen)
15 {
16         printfd(tcp, tcp->u_arg[0]);
17         tprints(", ");
18         tprintf("%" PRI_klu, tcp->u_arg[1]);
19
20         return RVAL_DECODED;
21 }