diff src/util.h @ 5563:9eb5b13fd412

[gaim-migrate @ 5965] Just a taste of what's coming. Standard "This won't compile" thing. Plugin authors, you're going to hate me, but that's okay, because I have friends too! It's really late. My brain resembles that of fish swimming in jello pudding with neon lights flying around chanting musicals. I'm not on drugs. I'm just that tired. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 09:38:29 +0000
parents 6f35b80c5ffa
children bd0d0e89cac3
line wrap: on
line diff
--- a/src/util.h	Fri May 30 04:13:58 2003 +0000
+++ b/src/util.h	Fri May 30 09:38:29 2003 +0000
@@ -26,6 +26,8 @@
 #ifndef _GAIM_UTIL_H_
 #define _GAIM_UTIL_H_
 
+#include "account.h"
+
 /**
  * Normalizes a string, so that it is suitable for comparison.
  *
@@ -131,8 +133,7 @@
  *
  * @return The gaim_account, if found, or @c NULL otherwise.
  */
-struct gaim_account *gaim_account_find(const char *name,
-									   int protocol) G_GNUC_PURE;
+GaimAccount *gaim_account_find(const char *name, int protocol);
 
 /**
  * Returns the date and time in human-readable form.
@@ -144,7 +145,7 @@
  *
  * @see date()
  */
-char *full_date(void) G_GNUC_PURE;
+char *full_date(void);
 
 /**
  * Looks for %n, %d, or %t in a string, and replaces them with the
@@ -268,7 +269,7 @@
  * @return A time_t.
  */
 time_t get_time(int year, int month, int day,
-				int hour, int min, int sec) G_GNUC_CONST;
+				int hour, int min, int sec);
 
 /**
  * Creates a temporary file and returns a file pointer to it.