vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit c8b93d65c6065c48c085feff41ec2ec85e5610f8
parent 555c8e8ac086741e20e51fd6c8041b7cdd025af6
Author: Paride Legovini <pl@ninthfloor.org>
Date:   Thu, 11 May 2017 21:28:52 +0200

Move the #defines within the #include guards

Diffstat:
Mutil.h | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/util.h b/util.h @@ -34,10 +34,7 @@ static void *memrchr(const void *m, int c, size_t n) } #endif -#endif /* UTIL_H */ - - -/* Needed for building on Hurd */ +/* Needed for building on GNU Hurd */ #ifndef PIPE_BUF #define PIPE_BUF 4096 @@ -45,4 +42,6 @@ static void *memrchr(const void *m, int c, size_t n) #ifndef PATH_MAX #define PATH_MAX 4096 -#endif -\ No newline at end of file +#endif + +#endif /* UTIL_H */