blob: 4877ae2c21696fe3101edbd1643dc3597d6182f7 [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 <stdio.h>
#include <unistd.h>
int main (int argc, char const *argv[])
{
char my_string[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 0};
double my_double = 1234.5678;
// For simplicity assume that any cmdline argument means wait for attach.
if (argc > 1)
{
volatile int wait_for_attach=1;
while (wait_for_attach)
usleep(1);
}
printf("my_string=%s\n", my_string);
printf("my_double=%g\n", my_double);
return 0;
}