Portable build framework for OpenNTPD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
243 B

  1. /*
  2. * Public domain
  3. * sys/cdefs.h compatibility shim
  4. */
  5. #include_next <sys/cdefs.h>
  6. #ifndef __weak_alias
  7. /*
  8. * We do not use any of the SHA function aliases that this would provide in
  9. * OpenNTPD
  10. */
  11. #define __weak_alias(alias,sym)
  12. #endif