summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/macosx/nslog/main.m
blob: dab4089e92734f5d9f558a74a9e8f2d366561d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//===-- main.m --------------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include <Foundation/Foundation.h>

int main(int argc, char** argv)
{
    printf("About to log\n"); // break here
    NSLog(@"This is a message from NSLog");

    return 0;
}