I noticed that a few shared dynarec header files have DOS-style CRLF (\r\n) line endings instead of Unix LF (\n). The rest of the codebase uses Unix line endings, so these seem like they snuck in at some point.
A simple dos2unix or sed -i 's/\r$//' on these three files would clean them up. I ran into this while working on PPC64LE dynarec and didn't want to mix unrelated whitespace changes into that PR, so filing this separately.