blob: ab8b69f4aa7350bb4d6aeab9cc39e95ebe2aba8f [file] [log] [blame]
// Build don't link:
// Special g++ Options: -Wall
enum tristate { no = -1, maybe, yes };
tristate
definite_tristate (int truth)
{
return (truth) ? yes : no;
}