At least they're all-caps, but as somebody that writes C++ and uses Raylib, I just wrapped it in a namespace in my project that I include, like so (note that cstdio must be included before raylib if you're using it from C++):
#pragma once
#include <cstdio>
namespace raylib {
#include <raylib.h>
}