Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 217843
Collapse All | Expand All

(-)../kismet-2007-10-R1/kismet_wrapper.cc (+2 lines)
Lines 28-33 Link Here
28
28
29
#include "config.h"
29
#include "config.h"
30
30
31
#include <cstring>
32
31
/* Blob of globals since sighandler needs them */
33
/* Blob of globals since sighandler needs them */
32
vector<string> postcli_err;
34
vector<string> postcli_err;
33
pid_t srvpid = -1, clipid = -1;
35
pid_t srvpid = -1, clipid = -1;
(-)../kismet-2007-10-R1/ringbuf.cc (+2 lines)
Lines 18-23 Link Here
18
18
19
#include "ringbuf.h"
19
#include "ringbuf.h"
20
20
21
#include <cstring>
22
21
RingBuffer::RingBuffer(int in_size) {
23
RingBuffer::RingBuffer(int in_size) {
22
    ring_len = in_size;
24
    ring_len = in_size;
23
    ring_data = new uint8_t[in_size];
25
    ring_data = new uint8_t[in_size];
(-)../kismet-2007-10-R1/util.cc (+2 lines)
Lines 23-28 Link Here
23
#include <sys/stat.h>
23
#include <sys/stat.h>
24
#include <fcntl.h>
24
#include <fcntl.h>
25
25
26
#include <cstring>
27
26
// We need this to make uclibc happy since they don't even have rintf...
28
// We need this to make uclibc happy since they don't even have rintf...
27
#ifndef rintf
29
#ifndef rintf
28
#define rintf(x) (float) rint((double) (x))
30
#define rintf(x) (float) rint((double) (x))

Return to bug 217843