diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2017-03-25 12:30:33 +0100 |
---|---|---|
committer | Michał Cichoń <michcic@gmail.com> | 2017-05-17 04:37:39 +0200 |
commit | 21b167532b07f631b107968837dcfdf93025239b (patch) | |
tree | 77fc64840d2dabd15a55861c4eac9c23c03bb82b /src/http | |
parent | a0f2fe714a64c88fb86a9fa09c5a5918e7f30d7a (diff) | |
download | pianobar-windows-21b167532b07f631b107968837dcfdf93025239b.tar.gz pianobar-windows-21b167532b07f631b107968837dcfdf93025239b.tar.bz2 pianobar-windows-21b167532b07f631b107968837dcfdf93025239b.zip |
Switch to #pragma once
# Conflicts:
# src/http/http.h
# src/player.h
Diffstat (limited to 'src/http')
-rw-r--r-- | src/http/http.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/http/http.h b/src/http/http.h index a321cd3..5ea617f 100644 --- a/src/http/http.h +++ b/src/http/http.h @@ -21,8 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef SRC_HTTP_H_CN979RE9 -#define SRC_HTTP_H_CN979RE9 +#pragma once #include "config.h" @@ -42,5 +41,3 @@ bool HttpSetProxy(http_t, const char*); bool HttpRequest (http_t, PianoRequest_t * const); const char* HttpGetError (http_t); -#endif /* SRC_HTTP_H_CN979RE9 */ - |