From 0b49a229fb4f0a04583d014671dbdc78fb6542d0 Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Fri, 18 Dec 2015 01:58:18 -0800 Subject: [PATCH] add back code to hello.c Reviewed By: jberdine Differential Revision: D2769632 fb-gh-sync-id: 267303e --- examples/hello.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/hello.c b/examples/hello.c index 3aa9469f4..6436c2881 100644 --- a/examples/hello.c +++ b/examples/hello.c @@ -7,3 +7,9 @@ * of patent rights can be found in the PATENTS file in the same directory. */ +#include + +void test() { + int *s = NULL; + *s = 42; +}