summaryrefslogblamecommitdiffstats
path: root/testutil/is-section-half.c
blob: ee6ef503bb928b8548a11a5f1b313f92e0f428cc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                               
/* See LICENSE file for copyright and license details. */
#include "../libsyscalls.h"

#include <stdlib.h>


int
main(int argc, char *argv[])
{
	enum libsyscalls_datatype_section sec;
	(void) argc;
	sec = (enum libsyscalls_datatype_section)atoi(argv[1]);
	return !LIBSYSCALLS_IS_SECTION_HALF(sec);
}