isFreeBSD

fnbool isFreeBSD() @safe nothrow

Checks if running on FreeBSD.

Returns

true (always, since this module is only compiled on FreeBSD).

Example:

if (isFreeBSD()) {
  writeln("Running on FreeBSD");
}