main.cc 339 B

12345678910111213
  1. /* Copyright (c) 2009 Google Inc. 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. #include <stdio.h>
  5. const char *GetToolset();
  6. const char *GetToolsetShared();
  7. int main(void) {
  8. printf("%s\n", GetToolset());
  9. printf("Shared: %s\n", GetToolsetShared());
  10. }