summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <PromyLOPh@lavabit.com>2009-09-08 14:15:28 +0200
committerLars-Dominik Braun <PromyLOPh@lavabit.com>2009-09-08 14:15:28 +0200
commitfaf7004c13f45442a6cdbe68ba977523d6593fc7 (patch)
treeac89711aa837fefbd02b157cb5f18685acd25b15 /src/main.c
parent83ba73a034583165d03873e8c3098397fc9ae5e8 (diff)
downloadpianobar-windows-faf7004c13f45442a6cdbe68ba977523d6593fc7.tar.gz
pianobar-windows-faf7004c13f45442a6cdbe68ba977523d6593fc7.tar.bz2
pianobar-windows-faf7004c13f45442a6cdbe68ba977523d6593fc7.zip
C99 conformance
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 65f5bfd..4549118 100644
--- a/src/main.c
+++ b/src/main.c
@@ -21,6 +21,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
+#define _POSIX_C_SOURCE 1 /* fileno() */
+#define _BSD_SOURCE /* strdup() */
+
/* system includes */
#include <stdlib.h>
#include <string.h>