Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save okumura/864041 to your computer and use it in GitHub Desktop.
Save okumura/864041 to your computer and use it in GitHub Desktop.
NULL definition on Visual Studio 2005 stdio.h
#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment