main.c

来源:互联网 发布:美容整形行业 知乎 编辑:程序博客网 时间:2024/05/23 00:22
/****************************************Copyright (c)**************************************************
**                               Guangzhou ZHIYUAN Electronics Co.,LTD.
**                                      graduate school
**                                 http://www.zyinside.com
**                           空函数
**--------------File Info-------------------------------------------------------------------------------
** File name: main.c
** Last modified Date:  2004-09-16
** Last Version: 1.0
** Descriptions: The main() function example template
**
**------------------------------------------------------------------------------------------------------
** Created by: Chenmingji
** Created date: 2004-09-16
** Version: 1.0
** Descriptions: The original version
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
**
********************************************************************************************************/
#include "config.h"


/*********************************************************************************************************
**                            main
********************************************************************************************************/
int main (void)
{
    while (1);
    return 0;
}


/*********************************************************************************************************
**                            End Of File
********************************************************************************************************/