File: test_strerror.c

package info (click to toggle)
json-c 0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,348 kB
  • sloc: ansic: 8,304; sh: 497; javascript: 82; cpp: 16; makefile: 12
file content (11 lines) | stat: -rw-r--r-- 184 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#include "strerror_override.h"
#include "strerror_override_private.h"

#include <stdio.h>

int main(int argc, char **argv)
{
	puts(strerror(10000));
	puts(strerror(999));
	return 0;
}