Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. int main (int argc, char **argv);
  2.  
  3. /* We define main() to call toplev_main(), which is defined in toplev.c.
  4.    We do this in a separate file in order to allow the language front-end
  5.    to define a different main(), if it so desires.  */
  6.  
  7. int
  8. main (int argc, char **argv)
  9. {
  10.   return toplev_main (argc, argv);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement