Include <stdbool.h> in clipboard.h as opposed to clipboardOSX.m; fixing a potential compiler error.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5872 4a71c877-e1ca-e34f-864e-861f7616d084
master
Freddie Witherden 2008-08-25 18:04:21 +00:00
parent 55be99a19d
commit c699aca070
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,8 @@
#ifndef CLIPBOARD_H_
#define CLIPBOARD_H_
#include <stdbool.h>
/**
* Returns a copy of the text in the systems clipboard. Should the clipboard be
* empty, or populated with non-textual data NULL is returned.

View File

@ -19,7 +19,6 @@
*/
#include <stdlib.h>
#include <stdbool.h>
#import <AppKit/AppKit.h>