ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
28 lines
474 B
C
28 lines
474 B
C
#include <stdint.h>
|
|
|
|
extern void bar (void);
|
|
extern void foo (void);
|
|
extern void foo_alias (void);
|
|
extern void check_ptr_eq (void (*) (void), void (*) (void));
|
|
|
|
#if defined(__GNUC__) && (__GNUC__ * 1000 + __GNUC_MINOR__) >= 4005
|
|
__attribute__ ((noinline, noclone))
|
|
#else
|
|
__attribute__ ((noinline))
|
|
#endif
|
|
int
|
|
foo_p (void)
|
|
{
|
|
return (intptr_t) &foo == 0x12345678 ? 1 : 0;
|
|
}
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
foo ();
|
|
foo_p ();
|
|
bar ();
|
|
check_ptr_eq (&foo, &foo_alias);
|
|
return 0;
|
|
}
|