mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
17 lines
247 B
C
17 lines
247 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
extern int value;
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int n = 10 * (argc + 1);
|
|
char *p = malloc (n);
|
|
__builtin_memcpy (p, argv[0], n);
|
|
if (value != -1)
|
|
abort ();
|
|
printf ("OK\n");
|
|
return 0;
|
|
}
|