summaryrefslogtreecommitdiff
path: root/xen/test/livepatch/xen_replace_world_func.c
blob: afb5cda3e31f07e018de1c238f8da4236ebda5d0 (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_replace_world(void)
{
    return "Hello Again World!";
}

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