Skip to content

Commit

Permalink
Update list.h
Browse files Browse the repository at this point in the history
Fix header guards
  • Loading branch information
jwerle committed Jan 16, 2014
1 parent 11e6fc3 commit beda3ca
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/list.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@

//
// list.h
//
// Copyright (c) 2010 TJ Holowaychuk <[email protected]>
//

#ifndef __LIST_H__
#define __LIST_H__
#ifndef LIST_H
#define LIST_H

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -120,4 +119,4 @@ list_iterator_destroy(list_iterator_t *self);
}
#endif

#endif /* __LIST_H__ */
#endif /* LIST_H */

0 comments on commit beda3ca

Please sign in to comment.