blob: 185cab2d16cc1f567b01b6a3e7f8d5ef81b31b54 [file] [log] [blame]
/*
* Copyright (c) 2013 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.
*/
extern void sym_a(void);
extern void sym_b(void);
int main(int argc, char **argv) {
sym_a();
sym_b();
return 0;
}