Write the header for an application-specific extension of 4 data bytes

After writing the header, clients should write the 4 data bytes.

Property definitions

msgpack :: write $ Writer :: write_msgpack_fixext4
	# Write the header for an application-specific extension of 4 data bytes
	#
	# After writing the header, clients should write the 4 data bytes.
	fun write_msgpack_fixext4(typ: Int)
	do
		write_byte 0xD6
		write_byte typ
	end
lib/msgpack/write.nit:466,2--473,4