gmacros.h: add G_GNUC_*_IGNORE_DEPRECATIONS macros for clang
[platform/upstream/glib.git] / glib / gwakeup.h
index 51f81ce..adf415c 100644 (file)
@@ -12,9 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  *
  * Author: Ryan Lortie <desrt@desrt.ca>
  */
 #ifndef __G_WAKEUP_H__
 #define __G_WAKEUP_H__
 
+#include <glib/gpoll.h>
+
 typedef struct _GWakeup GWakeup;
 
-G_GNUC_INTERNAL GWakeup *       g_wakeup_new            (void);
-G_GNUC_INTERNAL void            g_wakeup_free           (GWakeup *wakeup);
+GWakeup *       g_wakeup_new            (void);
+void            g_wakeup_free           (GWakeup *wakeup);
 
-G_GNUC_INTERNAL void            g_wakeup_get_pollfd     (GWakeup *wakeup,
-                                                         GPollFD *poll_fd);
-G_GNUC_INTERNAL void            g_wakeup_signal         (GWakeup *wakeup);
-G_GNUC_INTERNAL void            g_wakeup_acknowledge    (GWakeup *wakeup);
+void            g_wakeup_get_pollfd     (GWakeup *wakeup,
+                                         GPollFD *poll_fd);
+void            g_wakeup_signal         (GWakeup *wakeup);
+void            g_wakeup_acknowledge    (GWakeup *wakeup);
 
 #endif