Search

October 25, 2015
LDC »
#ifndef __BOOT_ASM_H__
#define __BOOT_ASM_H__

/* Assembler macros to create x86 segments */

/* Normal...
February 11, 2015
Announce »
...include "cpp/calypso.h"
 #include "expression.h"

+#ifndef _MSC_VER
 #include <unistd.h>
+#endif
+
 #include...
February 04, 2015
General »
...of function declarations surrounded by

#ifdef __NT__
#ifndef __STDC__
// declarations
#endif
#endif

and it's...
November 26, 2014
General »
...seen this before):

	// some evil .h file:
	...
	#ifndef someSillyStdLibMacro
	#define someSillyStdLibMacro myOwnBrokenImpl
	#endif

So if...
November 26, 2014
General »
...thing today.... and it failed. wait what?!


#ifndef _XLIB_H_
#error Please include <X11/Xlib...
September 13, 2014
General »
...basic_string.h:

	_CharT*
	_M_refcopy() throw()
	{
#ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
	  if (__builtin_expect...
August 06, 2014
General »
...based on code that is guarded by:

#ifndef _NDEBUG
//code that could be used for...
July 09, 2014
Learn »
...a){

    *a = 9;

}
[/code]

and jol.h

#ifndef JOL_H
#define JOL_H
void tes...
July 05, 2014
Learn »
...my code?  In C...

#include <stdio.h>
#ifndef SOMETHING
#define SOMETHING "bar"
#endif
int main...
March 14, 2014
General »
...rats'-nest of #if's, #ifdef's, #ifndef's, and "functions" that aren't defined...
1 2 3 4 5 6 7
Next ›   Last »