[Git][cmucl/cmucl][master] 2 commits: Fix #384: Use correct header guard in elf.h

Raymond Toy pushed to branch master at cmucl / cmucl Commits: 6c8861a0 by Raymond Toy at 2025-02-20T13:55:13+00:00 Fix #384: Use correct header guard in elf.h - - - - - 5b452f9a by Raymond Toy at 2025-02-20T13:55:13+00:00 Merge branch 'issue-384-use-correct-header-guard' into 'master' Fix #384: Use correct header guard in elf.h Closes #384 See merge request cmucl/cmucl!270 - - - - - 1 changed file: - src/lisp/elf.h Changes: ===================================== src/lisp/elf.h ===================================== @@ -9,7 +9,7 @@ * interface to both elf and mach-o support. I (rtoy) was too lazy to * change the name to something more descriptive. */ -#if !defined(_ELF_H_INCLUDED_) +#if !defined(ELF_H_INCLUDED) #define ELF_H_INCLUDED View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/ef48eb2a5fd47915030fc7e... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/ef48eb2a5fd47915030fc7e... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)