What is used instead of BYTE?

  mySerial.print(0, BYTE);

==>

mySerial.write((byte)0);

as has been posted MANY times.