Skip to content

Commit

Permalink
Merge pull request #15 from tueddy/master
Browse files Browse the repository at this point in the history
Fix natsort.c:29: warning: "_GNU_SOURCE" redefined #14
  • Loading branch information
sourcefrog authored Apr 4, 2024
2 parents f8a6b0c + 4c075c8 commit cdd8df9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion natsort.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
* 2003-03-18: Add --reverse option, from Alessandro Pisani.
*/

#define _GNU_SOURCE
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif

#include <stdio.h>
#include <stdlib.h>
Expand Down

0 comments on commit cdd8df9

Please sign in to comment.