/*
* Copyright (c) 2010--Meng Along
*
* The source code is released for free distribution under the terms of the GNU General Public License
*
*
* Author: Meng Along
* Created Time: 2010年06月13日 星期日 09时10分30秒
* File Name: std.c
* Description:
* 测试c99中的函数嵌套定义
*/
#include<stdio.h> #include<stdlib.h>
int fun1(void); int main(int argc,char*argv[]) {
fun1(); return 0; }