diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-03-03 11:32:53 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-03-03 11:32:53 +0100 |
commit | 27ac72d69b605df62e4f56b04ed7aec0c4e4ba1f (patch) | |
tree | b7a45fae3b0d6bfeeb5a600d987c4f8be6ae8a5c /doc/example_plugin.c | |
parent | 5e713f695f93f7dc88f225bf6a8cd16e228eff11 (diff) | |
parent | cdb92c53a9e930bc6c685127d13b743872959e75 (diff) |
Merge from Jelmer.
Diffstat (limited to 'doc/example_plugin.c')
-rw-r--r-- | doc/example_plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/example_plugin.c b/doc/example_plugin.c index 38d02260..a33907a8 100644 --- a/doc/example_plugin.c +++ b/doc/example_plugin.c @@ -2,10 +2,11 @@ * This is the most simple possible BitlBee plugin. To use, compile it as * a shared library and place it in the plugin directory: * - * gcc -o example.so -shared example.c + * gcc -o example.so -shared example.c `pkg-config --cflags bitlbee` * cp example.so /usr/local/lib/bitlbee */ #include <stdio.h> +#include <bitlbee.h> void init_plugin(void) { |