Guest User

Untitled

a guest
Nov 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. The most important macro in ansi.h is _PROTOTYPE. This macro allows us to write function prototypes in the form
  2.  
  3. _PROTOTYPE (return-type function-name, (argument-type argument, ... ) )
  4.  
  5.  
  6.  
  7. and have this transformed by the C preprocessor into
  8.  
  9. return-type function-name(argument-type, argument, ...)
  10.  
  11.  
  12.  
  13. if the compiler is an ANSI Standard C compiler, or
  14.  
  15. return-type function-name()
  16.  
  17.  
  18.  
  19. if the compiler is an old-fashioned (i.e., Kernighan & Ritchie) compiler.
Add Comment
Please, Sign In to add comment