blob: cb4edc8da7fa446123f06b38cd8ac5c736b1b5cd [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* Provide a dummy DSO for tst-rec-dlopen to use. */
2#include <stdio.h>
3#include <stdlib.h>
4
5int
6dummy2 (void)
7{
8 printf ("Called dummy2()\n");
9 /* If the outer dlopen is not dummy1 (becuase of some error)
10 then tst-rec-dlopen will see a value of -1 as the returned
11 result and fail. */
12 return -1;
13}