Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / native_client / tests / hello_world / exit.c
1 /*
2  * Copyright 2009 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 /*
8    It can't get much simpler than this (uh, except for noop.c).
9 */
10
11 #include <stdlib.h>
12
13 int main(void) {
14   exit(69);
15   return 0;
16 }