blob: ee6ef503bb928b8548a11a5f1b313f92e0f428cc (
plain) (
tree)
|
|
/* 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);
}
|