diff options
author | Max Kellermann <max@duempel.org> | 2008-08-28 20:02:20 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-28 20:02:20 +0200 |
commit | 9340e291f0906b4ae885d18b3391756cbdf66e78 (patch) | |
tree | 461cdd9a5bb0db7ddd6b49b5dd9a998be9842dac /src/Makefile.am | |
parent | bc1c8835c612ccb8063982657453fe658ed69d75 (diff) | |
download | mpd-9340e291f0906b4ae885d18b3391756cbdf66e78.tar.gz mpd-9340e291f0906b4ae885d18b3391756cbdf66e78.tar.xz mpd-9340e291f0906b4ae885d18b3391756cbdf66e78.zip |
imported list.h from the Linux kernel sources
linux/list.h is a nice doubly linked list library - it is lightweight
and powerful at the same time. It will be useful later, when we begin
to allocate client structures dynamically. Import it, and strip out
all the stuff which we are not going to use.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f4fd080d7..f4af3a5e3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -55,6 +55,7 @@ mpd_headers = \ inputStream_http_auth.h \ interface.h \ list.h \ + dlist.h \ listen.h \ log.h \ ls.h \ |