Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width35%
Code Block
languagecpp
titleTest.cc
firstline1
linenumberstrue
#include stuff.h

int goodbye(void) {

     int c << testme

     return 0
} 

int noreally_goodbye(void) {

     int x << testmeagain

     return 0
} 
rtems-gcc --flag --option \ --anotheroption \ <argument>

Always be sure to:

  • De-allocate memory
  • Motherhood statement 2
  • And don't forget to de-allocate memory

 

Column
width35%

Lines 10-15: New method, noreally_goodbye.

Line 7: Inserted call to new method.

Line 1: Include some stuff. Make sure the environment variables are correct.

Line 7: That's all she wrote!

To compile this puppy:

Code Block
languagebash