(svn r4529) - Codechange: Use proper naming for hex numbers in debug prints eg. 0xF3A6. Use fixed lengths where applicable (newgrf). Unfortunately '%#X' is unusable since it gives 0XFF3 and '%#x' gives 0xff3 while we want 0xFF3 :P
/* $Id */
#ifndef UNMOVABLE_H
#define UNMOVABLE_H
void UpdateCompanyHQ(Player *p, uint score);
#endif