Skip to content

Instantly share code, notes, and snippets.

@duckinator
Created February 14, 2010 05:10
Show Gist options
  • Select an option

  • Save duckinator/303856 to your computer and use it in GitHub Desktop.

Select an option

Save duckinator/303856 to your computer and use it in GitHub Desktop.
#ifndef STDBOOL_H
#define STDBOOL_h
#define bool _Bool
#ifndef true
#define true 1
#endif
#ifndef false
#define false 0
#endif
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment