blob: 8215a05dbdae90e9b54d6f443fa7cc2b10092c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "common/common_init.h"
/* This program exists to test that we can build libcommon without
* referencing g_ceph_context
*
* This program will go away as soon as we actually don't use g_ceph_context in
* more programs. Obviously, at that point, those programs will provide an
* equivalent test.
*/
int main(int argc, char **argv)
{
return 0;
}
|