summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/AutoExportDll/hello.cxx
blob: 4196948f6f0587396219cfbbb7e3a53a1f1cdb69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "hello.h"
#include <stdio.h>
int Hello::Data = 0;
void Hello::real()
{
  return;
}
void hello()
{
  printf("hello");
}
void Hello::operator delete[](void*) {};
void Hello::operator delete(void*) {};