Roll src/third_party/WebKit 3aea697:d9c6159 (svn 201973:201974)
[chromium-blink-merge.git] / tools / clang / translation_unit / test_files / binomial.h
blobc67b273f658665c20ca4a51972b3d01c0aa1a766
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 #ifndef TOOLS_CLANG_TRANSLATION_UNIT_TEST_FILES_BINOMIAL_H_
6 #define TOOLS_CLANG_TRANSLATION_UNIT_TEST_FILES_BINOMIAL_H_
8 int binomial(int n, int k) {
9 return k > 0 ? binomial(n - 1, k - 1) * n / k : 1;
12 #endif // TOOLS_CLANG_TRANSLATION_UNIT_TEST_FILES_BINOMIAL_H_