Skip to content

Commit 5815785

Browse files
committed
Update README.md
1 parent 4f07c07 commit 5815785

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,17 @@ The following is an example of performing a get bucket:
244244

245245
```c
246246

247-
ds3_get_bucket_response *response;
247+
#include <stdlib.h>
248+
#include <string.h>
249+
#include <stdint.h>
250+
#include <stdio.h>
251+
#include <sys/types.h>
252+
#include <sys/stat.h>
253+
// "ds3.h" is the only header that needs to be included to use the DS3 API.
254+
#include "ds3.h"
255+
256+
int main (int args, char * argv[]) {
257+
ds3_get_bucket_response *response;
248258
uint64_t i;
249259

250260
// Setup client credentials and then the actual client itself.

0 commit comments

Comments
 (0)