blob: 7d70d01ca07c690c872ac4e2d1d882dd4072056e [file] [log] [blame]
/* Copyright (c) 2011 Google Inc. 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 "b.h"
int main(int argc, char** argv) {
if (argc < 2)
return 1;
FILE* f = fopen(argv[1], "wt");
fprintf(f, "#define VALUE %d\n", funcA());
fclose(f);
return 0;
}