Files
rk35xx-android14/external/compiler-rt/make/platform/clang_darwin_test_input.c
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

16 lines
397 B
C

/* 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));
}