Updated Malay translation for the bfd sub-directory
[binutils-gdb.git] / ld / testsuite / ld-plugin / lto-19a.c
blob6213f79144d632f27f79aa7f1d0ced99351b6151
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "lto-19.h"
5 static const int utf8_sb_map[4] = { 0x12, 0x34, 0x56, 0x78 };
7 struct re_dfa_t *
8 rpl_regcomp ()
10 struct re_dfa_t *dfa = malloc (sizeof (struct re_dfa_t));
11 dfa->sb_char = utf8_sb_map;
12 return dfa;
15 void
16 rpl_regfree (struct re_dfa_t *dfa)
18 puts (dfa->sb_char == utf8_sb_map ? "PASS" : "FAIL");