File: SetNull.c

package info (click to toggle)
efitools 1.9.2-3.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 948 kB
  • sloc: ansic: 7,550; makefile: 131; perl: 119; sh: 35
file content (11 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#include <efi.h>

EFI_STATUS
efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
{
	int *test = NULL;

	*test = 0x123;

	return EFI_SUCCESS;
}