mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-28 17:20:30 +00:00
17 lines
333 B
Mathematica
17 lines
333 B
Mathematica
|
//
|
||
|
// 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]));
|
||
|
}
|
||
|
}
|