From 476848fbe0081e2604671fcd176435dcb36db076 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sun, 18 Nov 2007 19:16:49 +0000 Subject: [PATCH] Including stddef.h for NULL seems to be somewhat more portable than stdlib.h. --- core/sys/profile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sys/profile.c b/core/sys/profile.c index ec2dbee05..d6e7d7988 100644 --- a/core/sys/profile.c +++ b/core/sys/profile.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: profile.c,v 1.2 2007/11/17 10:14:19 adamdunkels Exp $ + * $Id: profile.c,v 1.3 2007/11/18 19:16:49 oliverschmidt Exp $ */ /** @@ -40,7 +40,7 @@ #include "sys/profile.h" -#include /* For NULL */ +#include /* For NULL */ unsigned int profile_timestamp_ptr; struct profile_timestamp profile_timestamps[PROFILE_LIST_LENGTH];