We do not plan to implement such function...
Usually, in our regression tests, when we have to detect the OS type, it's because of UNIX/Windows differences, and we do that with:
IF fgl_getenv("WINDIR") THEN
-- Windows specific
ELSE
-- UNIX specific
END IF
Seb