clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
(* Title: HOL/HOLCF/IOA/ABP/Packet.thy
Author: Olaf Müller
*)
section {* Packets *}
theory Packet
imports Main
begin
type_synonym
'msg packet = "bool * 'msg"
definition
hdr :: "'msg packet => bool" where
"hdr = fst"
definition
msg :: "'msg packet => 'msg" where
"msg = snd"
end