#include <stdio.h>

typedef enum { 
	1200, 2400, 4800, 9600 
} baudrate_t;

int main(void) 
{
	baudrate_t baudrate = 9600;
	return 0;
}	
