co-mc.h
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:0k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. // The following is designed to support the use of the asm() function
  2. // which in turn provides support for in-line assembly.  The format of
  3. // the asm() function is asm(type,string).  The result is an expression
  4. // whose C type is given as first argument.
  5. // this file can automatically be included within every module by
  6. // use of the PC-lint option:
  7. //
  8. //                   -header(co-mc.h)
  9. #define asm(type,string) ((type) __asm_func())
  10. unsigned __asm_func(void);