summaryrefslogtreecommitdiffstats
path: root/include/history.h
diff options
context:
space:
mode:
authorQball Cow <qball@gmpclient.nl>2014-05-27 12:55:47 +0200
committerQball Cow <qball@gmpclient.nl>2014-05-27 12:55:47 +0200
commitec538c64ea8bc9c57367c244bece38c967298a28 (patch)
tree23187fd33841a911aac6f66b57b2e73d0615075a /include/history.h
parent3188236121cebe2300b20214a976c27b2dcba768 (diff)
Initial pasting support.
Diffstat (limited to 'include/history.h')
-rw-r--r--include/history.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/history.h b/include/history.h
index 6ea75b8b..9ba0e8ad 100644
--- a/include/history.h
+++ b/include/history.h
@@ -35,7 +35,7 @@
*
*/
void history_set ( const char *filename, const char *entry )
- __attribute__((nonnull));
+__attribute__( ( nonnull ) );
/**
@@ -45,7 +45,7 @@ void history_set ( const char *filename, const char *entry )
* Removes the entry from the history.
*/
void history_remove ( const char *filename, const char *entry )
- __attribute__((nonnull));
+__attribute__( ( nonnull ) );
/**
@@ -56,7 +56,7 @@ void history_remove ( const char *filename, const char *entry )
* @returns a list of entries length long. (and NULL terminated).
*/
char ** history_get_list ( const char *filename, unsigned int * length )
- __attribute__((nonnull));
+__attribute__( ( nonnull ) );