git-subtree-dir: Security Research and Development with LLVM - Andrew Reiter git-subtree-mainline: aa7a9fc1e16c3c5be7ba312c4b4e37775e005101 git-subtree-split: 0605b5174c2bc286d3e95d6c0df620800bef96c7
26 строки
263 B
C
26 строки
263 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
struct shame {
|
|
int one;
|
|
int two;
|
|
int three;
|
|
};
|
|
|
|
int
|
|
foo(struct shame *s)
|
|
{
|
|
long int z;
|
|
|
|
z = random();
|
|
return s->one;
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
struct shame *s = (struct shame *)NULL;
|
|
foo(s);
|
|
return 0;
|
|
}
|