mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-28 17:20:30 +00:00
03e74a8e50
motify compile link error
16 lines
333 B
Objective-C
16 lines
333 B
Objective-C
//
|
|
// main.m
|
|
// SimpleConfig
|
|
//
|
|
// Created by realtek on 6/16/14.
|
|
// Copyright (c) 2014 Realtek. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|