Search

May 13, 2016
Learn »
C's #include directive and D's import statement have fundamentally different semantics:

C's...
May 13, 2016
Learn »
...return 0;
	}

min.h
=========================
	#include <stdio.h>

	#ifndef MIN
	#define MIN 100
	#endif

	void print...
May 13, 2016
Learn »
Okay, got it. It seams I just hadn't hit that bug yet because of...
May 12, 2016
Learn »
[...]

That seems wrong. You can't assign to an enum. Besides, doesn't your declaration...
May 13, 2016
Learn »
...has not specified one:

	#ifndef MIN
	#define MIN     99
	#endif

	#ifndef MAX
	#define MAX     999...
February 07, 2016
GDC »
...because you can't do !version like ifndef or !defined.  This is on an armv6...
January 04, 2016
Learn »
...You can safely remove the file guard #ifndef and #defines along with the last #endif...
October 27, 2015
Learn »
...is poot.

file asm.h

/*
是bootasm.S汇编文件所需要的头文件,主要是一些与X86保护模式的段访问方式相关的宏定义
*/

#ifndef __BOOT_ASM_H__
#define __BOOT_ASM_H...
October 26, 2015
Announce »
...is poot.

file asm.h

/*
是bootasm.S汇编文件所需要的头文件,主要是一些与X86保护模式的段访问方式相关的宏定义
*/

#ifndef __BOOT_ASM_H__
#define __BOOT_ASM_H...
October 26, 2015
LDC »
file asm.h

/*
是bootasm.S汇编文件所需要的头文件,主要是一些与X86保护模式的段访问方式相关的宏定义
*/

#ifndef __BOOT_ASM_H__
#define __BOOT_ASM_H__

/* Assembler macros...
1 2 3 4 5 6
Next ›   Last »