mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
9 lines
145 B
C
9 lines
145 B
C
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
int main(int argc, char ** argv) {
|
|
errno = EINVAL;
|
|
printf("errno = %d\n", errno);
|
|
return 0;
|
|
}
|