ecf7648c3f980b232f053222161139d82bea770a
[openbsd] /
1 //===-- main.m ------------------------------------------------*- ObjC -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #import <CoreMedia/CoreMedia.h>
10
11 int main(int argc, const char **argv)
12 {
13     @autoreleasepool
14     {
15         CMTime t1 = CMTimeMake(1, 10);
16         CMTime t2 = CMTimeMake(10, 1);
17
18         CMTimeShow(t1); // break here
19         CMTimeShow(t2);
20     }
21     return 0;
22 }