summaryrefslogtreecommitdiff
path: root/unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/unix.c b/unix.c
index 932a4a56c..06aa7b9da 100644
--- a/unix.c
+++ b/unix.c
@@ -353,6 +353,13 @@ const DriverDesc _music_driver_descs[] = {
{ NULL, NULL, NULL, 0}
};
+/* GetOSVersion returns the minimal required version of OS to be able to use that driver.
+ Not needed for *nix. */
+byte GetOSVersion()
+{
+ return 1; // any arbitrary number bigger then 0
+}
+
bool FileExists(const char *filename)
{
return access(filename, 0) == 0;