Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Storage" directory is working. #5

Open
wants to merge 10 commits into
base: haiku
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion add-ons/dosfs/inc/fsproto.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef _FSPROTO_H
#define _FSPROTO_H

#include <sys/dirent.h>
#include <posix/dirent.h>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#include <posix/dirent.h>
#include <dirent.h>

#include <sys/types.h>
#include <sys/param.h>
#include <sys/stat.h>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion intro/QSort/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ SYMBOLS =
DEBUGGER =

# specify additional compiler flags for all files
COMPILER_FLAGS =
COMPILER_FLAGS = -fpermissive

# specify additional linker flags
LINKER_FLAGS =
Expand Down
4 changes: 3 additions & 1 deletion intro/QSort/qsort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#include <List.h>
#include <StopWatch.h>

long Partition(void *castToWorkUnit);

/* for experimentation purposes, these are global */
int32 SIZE;
int32 THREADS;
Expand Down Expand Up @@ -326,4 +328,4 @@ main(int argc, char** argv)
printf("proper sort: %s\n", v ? "true" : "false");

return 0;
}
}
1 change: 1 addition & 0 deletions intro/TextEditor/textwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
This file may be used under the terms of the Be Sample Code License.
*/

#include <File.h>
#include <Application.h>
#include <Messenger.h>
#include <Message.h>
Expand Down
Loading