blob: b406a28a639c021ba624c55be0d4e0c38a270809 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Include the headers we use in int_lib.h, to verify that they work. */
#include <limits.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
// Force us to link at least one symbol in a system library
// to detect systems where we don't have those for a given
// architecture.
int main(int argc, const char **argv) {
int x;
memcpy(&x,&argc,sizeof(int));
}
|