Write value as a single byte

Property definitions

socket $ NativeSocket :: write_byte
	# Write `value` as a single byte
	fun write_byte(value: Int): Int `{
		unsigned char byt = (unsigned char)value;
		return write(*self, &byt, 1);
	`}
lib/socket/socket_c.nit:143,2--147,3