summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/framework-dirs/calculate.c
blob: 7dc9d2d8b46f858d7793d6dd06f1e2974d8baf9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright (c) 2012 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.
 */

int CalculatePerformExpression(char* expr,
                               int significantDigits,
                               int flags,
                               char* answer);

int main() {
  char buffer[1024];
  return CalculatePerformExpression("42", 1, 0, buffer);
}