摘要: 1 /* 2 simple memory manage demo from TCPL 3 should be compiled in unix 4 debug to see how it works 5 */ 6 7 #include <stdio.h> 8 #include <stdlib.h> 9 #include <unistd.h> 10 11 typedef long Align; 12 13 union header 14 { 15 struct 16 { 17 union header* p... 阅读全文
posted @ 2012-10-29 14:27 strorehouse 阅读(432) 评论(0) 推荐(0) 编辑