mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 00:24:03 -04:00
17 lines
164 B
C
17 lines
164 B
C
/* Used in enum.c test */
|
|
|
|
enum Color {
|
|
Red,
|
|
Green,
|
|
Blue
|
|
};
|
|
|
|
enum Shape {
|
|
Square,
|
|
Triangle = 17,
|
|
Rhombus,
|
|
Circle
|
|
};
|
|
|
|
enum Shape aRoundShape = Circle;
|