elementary: fix combobox example to not duplicate the definition of _GNU_SOURCE.

Summary: Depends on D8075

Reviewers: devilhorns

Reviewed By: devilhorns

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8076
This commit is contained in:
Cedric BAIL 2019-03-01 08:58:59 -05:00 committed by Christopher Michael
parent cd05b1b7be
commit 5f48e25b50
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
//Compile with:
//gcc -o combobox_example_01 combobox_example_01.c -g `pkg-config --cflags --libs elementary`
#define _GNU_SOURCE
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <string.h>
#include <Elementary.h>