Error Compiling C Code with Time and Date Functions.
On Tue, Dec 09, 2008 at 03:32:35PM -0600, Martin McCormick wrote:
> I portedd some code I had written in FreeBSD unix over to
> a new ubuntu-server system only to discover that none of the
> time and date functions compile in Linux but do so under
> FreeBSD. When referencing members of the structure timeptr such as
>
> (timeptr->tm_year - 100), (timeptr->tm_mon) + 1, timeptr->tm_mday);
>
> compilation finds an error every time. The following
> fragment will produce the error:
>
> struct tm *timeptr;
> time_t elapsed_seconds; /*since midnight 1/1/70*/
> time(&elapsed_seconds);
> timeptr = localtime(&elapsed_seconds); /*fill structure*/
> sprintf(newalarm,"alarms%02d%02d%02d", (timeptr->tm_year - 100), (timeptr->tm_mon) + 1, timeptr->tm_mday);
*snip*
> #include <sys/time.h>
Your problem seems to be here. On my machine at lease, time.h is not
in /usr/include/sys. It's in /usr/include. The struct you are making a
pointer to above is not defined in sys/time.h. You need:
#include <time.h>
I do see the struct defined there. It is a part of libc6-dev.
--
Carl Flippin | An idealist is one who, on noticing that a
carlf@photocarl.org | rose smells better than a cabbage, concludes
http://photocarl.org | that it will also make a better soup.
_____________________| -- H. L. Mencken
--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
|