You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, @g-berthiaume!
I'm so sorry for the long answer...
Many thanks for this catch. It is very corner case of my testing procedure, because on my Linux PC the Unix example compiled successfully.
I have added to microrl.h header the #include <stddef.h> with size_t type.
In the near future I will fix incorrect unsigned-signed types comparisons and release a corresponding patch.
If interested, you can also take look at my new microsh library based on microrl, it might be of interest to you too.
Hi,
here are some small comments about microrl.
I'm in the process of testing your lib with a test project because it seems like exactly what I need.
microrl
is not compiling becausesize_t
is not defined.Simple fix: add
#include <stdlib.h>
to line 33.In some of my projects, I'm required to compile with warning levels.
Here are some of my finding:
If you want to reproduce, you can add the following in your makefile
Thanks for your work!
Very interesting and useful project.
The text was updated successfully, but these errors were encountered: