Lines Matching refs:errstr
347 const char *errstr; in main() local
370 IPC_MSG_NUM_MAX, &errstr); in main()
371 if (errstr != NULL) in main()
373 errstr); in main()
377 IPC_MSG_SIZE_MAX, &errstr); in main()
378 if (errstr != NULL) in main()
380 errstr); in main()
392 zvalue = strtonum(optarg, 0, 3, &errstr); in main()
393 if (errstr != NULL) in main()
395 errstr); in main()
409 testno = strtonum(argv[optind], 0, UINT_MAX, &errstr); in main()
410 if (errstr != NULL) in main()
411 errx(EXIT_FAILURE, "test number is %s", errstr); in main()