/contrib/ntp/README.hackers

https://bitbucket.org/freebsd/freebsd-head/ · Unknown · 28 lines · 17 code · 11 blank · 0 comment · 0 complexity · 3cc09675df4a380b09632e725a06854e MD5 · raw file

  1. Notes to hackers.
  2. See README.patches for information about submitting patches.
  3. ---
  4. Dave likes this code indented formatted in a consistent way.
  5. The file "dot.emacs" has the emacs C-mode indentation style that Dave likes.
  6. ---
  7. NTP4 uses ANSI C. Some folks are blessed with a pre-ansi C compiler. We
  8. support them by using "ansi2knr" in the Makefiles, which is automatically
  9. detected and selected by the configure process.
  10. For ansi2knr to work, we MUST define functions as follows:
  11. type stuff
  12. function_name ( actual parameters )
  13. While the whitespace is optional, the function name MUST start at column 0.
  14. ---
  15. We'd like to see *all* system function declarations live in include/l_stdlib.h
  16. and NEVER appear in the .c files.
  17. ---