view src/win32/libc_internal.h @ 5643:eb685809108b

[gaim-migrate @ 6057] When a prpl couldn't load, the account's prpl ID got set to -1 and the account config file had to be manually editted. Now that's fixed, and it stores the ID on load and writes it on save. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 01 Jun 2003 21:36:40 +0000
parents 21d296405cfd
children 9657e243d001
line wrap: on
line source

/*
 *  libc_internal.h
 */

#ifndef _LIBC_INTERNAL_
#define _LIBC_INTERNAL_

/* fcntl.h */
#define F_SETFL 1
#define O_NONBLOCK 1

/* sys/time.h */
struct timezone {
	int tz_minuteswest;
	int tz_dsttime;
};


#endif /* _LIBC_INTERNAL_ */