Re: builtins.h missing include guard

2017-04-19 Thread Chet Ramey
On 4/19/17 5:30 AM, Pierre Gaston wrote: > I'm toying with loadable builtins and I noticed that builtins.h does not > have include guard. That's true, and I can add one. But it's not included by any other headers, so it's up to you to include it once. > > Basically I needed the definition of WO

builtins.h missing include guard

2017-04-19 Thread Pierre Gaston
I'm toying with loadable builtins and I noticed that builtins.h does not have include guard. Basically I needed the definition of WORLD_LIST and I was using (not sure if there is a better way): #include #include #include That's all Pierre