1#ifdef HAVE_CONFIG_H
2#include <config.h>
3#endif
4#include "stubs.h"
5
6#ifdef __SUNPRO_C
7#pragma weak set_font_authorizations
8#endif
9
10weak int
11set_font_authorizations(char **authorizations, int *authlen, ClientPtr client)
12{
13    OVERRIDE_SYMBOL(set_font_authorizations, authorizations, authlen, client);
14    return 0;
15}
16