summaryrefslogtreecommitdiff
path: root/deps/gyp/test/rules-dirname/src/subdir/main.cc
blob: 3bb8e01395ee83a64777142dd1fb9f86e28c533d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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.
namespace gen {
  extern void nodir();
  extern void c();
  extern void baz();
}

int main() {
  gen::nodir();
  gen::c();
  gen::baz();
}