blob: 9a19de35d54f47c8fc3435e0ad8fa3507b7ba8c4 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdio.h>
#include <stdlib.h>
extern int foo(int);
int main(int argc, const char** argv) {
if (argc < 2)
return EXIT_FAILURE;
printf("x = %d\n", foo(atoi(argv[1])));
return 0;
}