summaryrefslogtreecommitdiff
path: root/tests/print_maxfd.c
blob: ace9754eb48b584075b20eac0852b5297ee40625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Print the maximum descriptor number available.
 *
 * Copyright (c) 2016-2021 Dmitry V. Levin <ldv@strace.io>
 * All rights reserved.
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "tests.h"
#include <stdio.h>
#include <sys/resource.h>

int
main(void)
{
	int fds[2];
	pipe_maxfd(fds);
	printf("%d\n", fds[1]);
	return 0;
}