f8ebcfc077
Add char16_t('u') literals Remove wchar_t('L') literals Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
21 lines
384 B
C
21 lines
384 B
C
/*
|
|
* ctors_test.c
|
|
* Copyright 2019 Peter Jones <pjones@redhat.com>
|
|
*
|
|
*/
|
|
|
|
#include <efi.h>
|
|
#include <efilib.h>
|
|
|
|
extern int constructed_value;
|
|
|
|
EFI_STATUS
|
|
efi_main (EFI_HANDLE image EFI_UNUSED, EFI_SYSTEM_TABLE *systab EFI_UNUSED)
|
|
{
|
|
Print(u"%a:%d:%a() constructed_value:%d\n", __FILE__, __LINE__, __func__, constructed_value);
|
|
|
|
return EFI_SUCCESS;
|
|
}
|
|
|
|
// vim:fenc=utf-8:tw=75:noet
|