View | Details | Raw Unified | Return to bug 8867
Collapse All | Expand All

(-)make_exports.awk.orig (-1 / +4 lines)
Lines 71-77 Link Here
71
71
72
function add_symbol(symbol) {
72
function add_symbol(symbol) {
73
    if (!index(symbol, "#")) {
73
    if (!index(symbol, "#")) {
74
        push("const void *ap_hack_" symbol " = (const void *)" symbol ";")
74
        push("#ifndef AP_DEFINED_AP_HACK_" symbol);
75
        push("#define AP_DEFINED_AP_HACK_" symbol);
76
        push("const void *ap_hack_" symbol " = (const void *)" symbol ";");
77
        push("#endif");
75
        scope_used[scope] = 1
78
        scope_used[scope] = 1
76
    }
79
    }
77
}
80
}

Return to bug 8867