1 /*
2  * Copyright 2008 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   Intentionally do nothing.  If even this program won't run, here are
9   some debugging tips:
10 
11   The last spot in the loader hit before jumping into the NaCl
12   executable is NaClSwitch().
13 
14   After we're done with our main(), the exit system call will be
15   called, which hits NaClSysExitDecoder() in the loader.
16 */
17 
18 #include <stdio.h>
19 
main(int argc,char * argv[])20 int main(int argc, char* argv[]) {
21   return 0;
22 }
23