mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-08-18 17:17:39 +08:00
19 lines
398 B
C
19 lines
398 B
C
/*************************************************************************
|
|
> File Name: 1.c
|
|
> Author: GatieMe
|
|
> Mail: gatieme@163.com
|
|
> Created Time: Sat 14 Oct 2017 10:09:04 AM CST
|
|
************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
printf("=======\n");
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
|