summaryrefslogtreecommitdiff
path: root/xen/test/livepatch/xen_bye_world_func.c
blob: 32ef3415d3f55653b4a6901fac4bb84b06eae564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
 *
 */

#include <xen/types.h>

/* Our replacement function for xen_hello_world. */
const char *xen_bye_world(void)
{
    return "Bye World!";
}

/*
 * Local variables:
 * mode: C
 * c-file-style: "BSD"
 * c-basic-offset: 4
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */