Chinaunix首页 | 论坛 | 博客
  • 博客访问: 161902
  • 博文数量: 17
  • 博客积分: 1056
  • 博客等级: 少尉
  • 技术积分: 240
  • 用 户 组: 普通用户
  • 注册时间: 2005-12-08 23:27
文章分类

全部博文(17)

文章存档

2012年(1)

2011年(1)

2009年(4)

2008年(11)

我的朋友

分类: C/C++

2009-03-27 14:54:12

#include <stdio.h>
#include <string.h>
 
void foo() __attribute__ ((constructor));
 
 
int main()
{
        return 0;
}
 
void foo()
{
        printf("Hello from %s\n", __FUNCTION__);
}

阅读(1101) | 评论(1) | 转发(0) |
0

上一篇:deamon programming

下一篇:tcp存在这样的情况

给主人留下些什么吧!~~

chinaunix网友2009-06-16 12:37:07

兄弟,你这个能通过编译吗?