mirror of
https://github.com/ipxe/ipxe
synced 2025-12-25 00:17:57 +03:00
Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
19 lines
252 B
C
19 lines
252 B
C
#ifndef _GPXE_EFI_TIMER_H
|
|
#define _GPXE_EFI_TIMER_H
|
|
|
|
/** @file
|
|
*
|
|
* gPXE timer API for EFI
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#ifdef TIMER_EFI
|
|
#define TIMER_PREFIX_efi
|
|
#else
|
|
#define TIMER_PREFIX_efi __efi_
|
|
#endif
|
|
|
|
#endif /* _GPXE_EFI_TIMER_H */
|