Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Unified Diff: ports/pnacl/hello.c

Issue 1607793004: Update pnacl toolchain version (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ports/pnacl/compiler_wrapper.py ('k') | ports/pnacl/nacl.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/pnacl/hello.c
diff --git a/ports/pnacl/hello.c b/ports/pnacl/hello.c
new file mode 100644
index 0000000000000000000000000000000000000000..2bbd6714ce77a02fb58bf692ac7f888ce22f71c8
--- /dev/null
+++ b/ports/pnacl/hello.c
@@ -0,0 +1,14 @@
+/*
+ * Copyright 2016 The Native Client Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* Simple hello world test program for compiler smoketest */
+
+#include <stdio.h>
+
+int main() {
+ printf("Hello, world!\n");
+ return 0;
+}
« no previous file with comments | « ports/pnacl/compiler_wrapper.py ('k') | ports/pnacl/nacl.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698