blob: 188738cb9babf2198fe6ba6ec3a907a9a4688ae0 [file] [log] [blame]
//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <cstdio>
int
main(int argc, char const *argv[])
{
fprintf(stderr, "%d %p %s\n", argc, argv, argv[0]);
}