libvirt/src/xenapi
Daniel P. Berrangé 4cfd709021 Fix many mistakes & inconsistencies in header file layout
This introduces a syntax-check script that validates header files use a
common layout:

  /*
   ...copyright header...
   */
  <one blank line>
  #ifndef SYMBOL
  # define SYMBOL
  ....content....
  #endif /* SYMBOL */

For any file ending priv.h, before the #ifndef, we will require a
guard to prevent bogus imports:

  #ifndef SYMBOL_ALLOW
  # error ....
  #endif /* SYMBOL_ALLOW */
  <one blank line>

The many mistakes this script identifies are then fixed.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2018-12-14 10:46:53 +00:00
..
Makefile.inc.am
xenapi_driver_private.h Fix many mistakes & inconsistencies in header file layout 2018-12-14 10:46:53 +00:00
xenapi_driver.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
xenapi_driver.h Fix many mistakes & inconsistencies in header file layout 2018-12-14 10:46:53 +00:00
xenapi_utils.c Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00
xenapi_utils.h Remove all Author(s): lines from source file headers 2018-12-13 16:08:38 +00:00