The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 05-09-2007
xxxaxa xxxaxa is offline
Registered User
 

Join Date: May 2007
Posts: 3
I'm sorry, one last question... I want to put the #endif thing one line after this function. I.E.

Code:
status = MyFunc(a, b, c);
CheckResults(status);
|
V

Code:
#ifdef JUST_DONT
status = MyFunc(a, b, c);
CheckResults(status);
#endif
How do I "insert" this extra newline into the search string? (I'm terribly sorry for my dumb questions, but I really didn't succeed to use the online help )
Reply With Quote