mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-20 07:20:43 +00:00
2f766553e8
DOES NOT WORK YET
13 lines
312 B
C++
Executable file
13 lines
312 B
C++
Executable file
// Part of SAASound copyright 1998-2018 Dave Hooper <dave@beermex.com>
|
|
//
|
|
// SAASound.cpp - dummy function
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include <stdio.h>
|
|
|
|
// Provide something so the compiler doesn't optimise us out of existance
|
|
int SomeFunction ()
|
|
{
|
|
return 42;
|
|
}
|